An opensource forms app that can create stunning mobile-ready forms, surveys and questionnaires.
10K+
An opensource alternative to TypeForm that can create stunning mobile-ready formsβ , surveys and questionnaires.
version: '2'
services:
mongo:
image: mongo:latest
redis:
image: redis:alpine
tellform:
image: james9074/tellform:tls
environment:
BASE_URL: localhost
DB_1_PORT_27017_TCP_ADDR: mongo
REDIS_DB_PORT_6379_TCP_ADDR: redis
MAILER_SERVICE_PROVIDER: Mailgun
MAILER_EMAIL_ID: pubkey-4t8e4tje489ote4te5y
MAILER_PASSWORD: some-pw
MAILER_FROM: [email protected]
NODE_ENV: production
DISABLE_CLUSTER_MODE=TRUE
links:
- redis:redis-db
- mongo:db
command:
- npm
- start
Please checkout our CONTRIBUTING.md on ways to contribute to TellForm.
All contributors are eligible to get a free TellForm Stickerβ . All you have to do is submit a PR, get it accepted, email your address to team [at] tellform.com and we'll send you a sticker that you can proudly put on your laptop.
Before you start, make sure you have
Also make sure to install DNS Masqβ or equivalent if running it locally on your computer (look at dns_masq_setup_osx for instructions on OSX)
Install dependencies first.
$ npm install
$ bower install
Setup environment.
$ grunt build
Create your user account
$ node ./scripts/setup.js
OR create your .env file
GOOGLE_ANALYTICS_ID=yourGAID
PRERENDER_TOKEN=yourPrerender.ioToken
COVERALLS_REPO_TOKEN=yourCoveralls.ioToken
BASE_URL=localhost
DSN_KEY=yourPrivateRavenKey
# Mail config
[email protected]
MAILER_PASSWORD=some-pass
[email protected]
# Use this for one of Nodemailer's pre-configured service providers
MAILER_SERVICE_PROVIDER=SendGrid
# Use these for a custom service provider
# Note: MAILER_SMTP_HOST will override MAILER_SERVICE_PROVIDER
MAILER_SMTP_HOST=smtp.domain.com
MAILER_SMTP_PORT=465
MAILER_SMTP_SECURE=true
Side note: Currently we are using Raven and Sentry https://www.getsentry.comβ for error logging. To use it you must provide a valid private DSN key in your .env file and a public DSN key in app/views/layout.index.html
Set NODE_ENV=development in .env file
$ grunt
Set NODE_ENV=production in .env file
$ grunt
Your application should run on port 3000 or the port you specified in your .env file, so in your browser just go to http://localhost:3000β
To deploy with docker, first install docker hereβ .
Then run these commands
$ docker run -p 27017:27017 -d --name some-mongo mongo
$ docker run -p 127.0.0.1:6379:6379 -d --name some-redis redis
$ docker run --rm -p 3000:3000 --link some-redis:redis-db --link some-mongo:db -e "SUBDOMAINS_DISABLED=TRUE" -e "DISABLE_CLUSTER_MODE=TRUE" -e "MAILER_EMAIL_ID=<YourEmailAPI_ID>" -e "MAILER_FROM=<[email protected]>" -e "MAILER_SERVICE_PROVIDER=<YourEmailAPIProvider>" -e "MAILER_PASSWORD=<YourAPIKey>" -e "BASE_URL=localhost" -p 80:80 tellform/development
You can run the full test suite included with TellForm with the test task:
$ grunt test
This will run both the server-side tests (located in the app/tests/ directory) and the client-side tests (located in the public/modules/*/tests/).
To execute only the server tests, run the test:server task:
$ grunt test:server
And to run only the client tests, run the test:client task:
$ grunt test:client
Currently the live example uses heroku github deployments. The Docker file is out of date and does not work. If someone wishes to get it working feel free to submit a pull request.
To calculate your total test coverage with Istanbul, run the coverage task
$ grunt coverage
To calculate your server-side test coverage with Istanbul, run the coverage task
$ grunt coverage:server
To calculate your client-side test coverage with Istanbul, run the coverage task
$ grunt coverage:client
Before you start, make sure you have
Also make sure to install DNS Masqβ or equivalent if running it locally on your computer (look at dns_masq_setup_osx for instructions on OSX)
$ npm install
$ bower install
Create .env file at project root folder. Fill in MAILER_EMAIL_ID and MAILER_PASSWORD, and either MAILER_SERVICE_PROVIDER using a Nodemailer Well-known serviceβ or MAILER_SMTP_HOST, MAILER_SMTP_PORT, and MAILER_SMTP_SECURE for a custom SMTP server.
APP_NAME=forma
APP_DESC=
APP_KEYWORDS=
NODE_ENV=development
BASE_URL=localhost:5000
PORT=5000
username=forma_admin
SIGNUP_DISABLED=false
SUBDOMAINS_DISABLED=true
DISABLE_CLUSTER_MODE=true
GOOGLE_ANALYTICS_ID=
RAVEN_DSN=
PRERENDER_TOKEN=
COVERALLS_REPO_TOKEN=
# Mail config
[email protected]
MAILER_PASSWORD=some-pass
[email protected]
# Use this for one of Nodemailer's pre-configured service providers
MAILER_SERVICE_PROVIDER=
# Use these for a custom service provider
# Note: MAILER_SMTP_HOST will override MAILER_SERVICE_PROVIDER
MAILER_SMTP_HOST=
MAILER_SMTP_PORT=465
MAILER_SMTP_SECURE=true
Create and start mongo & redis docker container.
$ docker run -p 27017:27017 -d --name forma-mongo mongo
$ docker run -p 127.0.0.1:6379:6379 -d --name forma-redis redis
After code changes, build and start docker containers.
$ docker start forma-mongo && docker start forma-redis
$ docker build -t forma-tellform .
$ docker stop forma-tellform
$ docker run --rm -p 5000:5000 --link forma-redis:redis-db --link forma-mongo:db --name forma-tellform forma-tellform
Your application should run on port 5000 or the port you specified in your .env file, so in your browser just go to http://localhost:5000β
Does your company use TellForm? Help keep the project bug-free and feature rich by sponsoring the projectβ .
β
β
β
β
β
β
Love our work and community? Become a backerβ .
Content type
Image
Digest
Size
309.2 MB
Last updated
about 9 years ago
docker pull james9074/tellform