✏️ Free Opensource Alternative to TypeForm or Google Forms
Go to file
2017-08-07 15:37:00 +08:00
app fixed form field preservation logic 2017-07-28 17:04:16 -07:00
config initial fork version 2017-08-01 10:58:27 +08:00
design/screenshots added translation to signup header 2016-07-04 14:13:22 -07:00
docs added statuspage logo 2017-04-22 18:04:33 -07:00
public Removed fixed height of buttons 2017-08-07 15:37:00 +08:00
scripts We need to be sure to not end before .env file is written 2017-06-23 16:48:11 -03:00
.all-contributorsrc Add @PeterDaveHello as a contributor 2017-04-22 18:38:28 -07:00
.bowerrc added automatic bower dependency injection 2015-07-03 12:25:02 -07:00
.codeclimate.yml updated .code-cilmate.yml file 2016-04-28 23:30:28 -07:00
.csslintrc first commit 2015-06-29 15:51:29 -07:00
.editorconfig first commit 2015-06-29 15:51:29 -07:00
.gitignore Added dist to gitignore 2017-07-12 11:02:19 -07:00
.jshintrc match jshintrc config 2017-06-23 14:54:28 -03:00
.slugignore first commit 2015-06-29 15:51:29 -07:00
.travis.yml Updated 6.0.0 to 6.11.1 in travis config 2017-07-20 22:02:56 -07:00
app.json fixed edit-submission-form-directive test and removed unnessecary console.log() statements 2017-07-28 14:47:09 -07:00
bower.json Added ngCacheBuster to bower.json 2017-07-20 17:20:45 -07:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-07-14 16:15:39 -07:00
conf.json Removed trailing comma from conf.json 2017-04-20 21:46:26 -07:00
dns_masq_setup_osx.md Update dns_masq_setup_osx.md 2016-11-16 10:48:54 -08:00
docker-compose.yml Docker-Compose 2017-05-06 02:02:05 -03:00
Dockerfile added socketPort option 2017-04-03 13:28:24 -07:00
Dockerfile-production added socketPort option 2017-04-03 13:28:24 -07:00
ecosystem.json Update ecosystem.json 2017-04-23 13:24:33 -07:00
gruntfile.js initial fork version 2017-08-01 10:58:27 +08:00
ISSUE_TEMPLATE.md Create ISSUE_TEMPLATE 2017-04-22 15:08:30 -07:00
karma.conf.js got all frontend tests to pass 2017-03-27 13:32:33 -07:00
LICENSE.md first commit 2015-06-29 15:51:29 -07:00
package.json fixed form field preservation logic 2017-07-28 17:04:16 -07:00
process.yml Got vagrant to work 2016-12-02 09:35:43 -08:00
Procfile first commit 2015-06-29 15:51:29 -07:00
protractor.conf.js added testing 2015-08-18 14:44:36 -07:00
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md 2017-07-14 16:13:18 -07:00
README.md minor changes 2017-08-02 16:18:16 +08:00
server.js Removed unused init module from server.js 2017-04-22 19:23:23 -07:00
Vagrantfile Got vagrant to work 2016-12-02 09:35:43 -08:00

TellForm 2.0.0

Build Status Project Status Code Climate Codacy Badge Gitter

An opensource alternative to TypeForm that can create stunning mobile-ready forms , surveys and questionnaires.

Deploy

Table of Contents

Features

Currently following features are implemented:

  • Multi-Language Support
  • 11 possible question types
  • Editable start and end pages
  • Export Submissions to XLS, JSON or CSV
  • Native Analytics and Google Analytics Support
  • Custom Subdomains for each User
  • Embeddable Forms
  • Forms as a Service API
  • Deployable with Heroku and DockerHub

On the Roadmap for v3.0.0

  • Implement encryption for all form data
  • Add Typeform API integration
  • Add plugin/3rd party integration support (ala Slack)
  • Create wiki for easy installation and setup
  • Add Stripe/Payment Form field
  • Add Custom Background and Dropdown Field Images
  • Add File Upload Form Field

How to Contribute

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.

Quickstart

Before you start, make sure you have

  1. Redis installed and running at 127.0.0.1:6379
  2. MongoDB installed and running at 127.0.0.1:27017 (OR specify the host and port in config/env/all)

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
MAILER_EMAIL_ID=SMTP_Injection
MAILER_FROM=noreply@yourdomain.com
MAILER_PASSWORD=your_sendgrid_apikey
MAILER_SERVICE_PROVIDER=SendGrid
BASE_URL=localhost
DSN_KEY=yourPrivateRavenKey

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

To run the development version:

Set NODE_ENV=development in .env file $ grunt

To run the production version:

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

Deploying with Docker

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=<noreply@yourdomain.com>" -e "MAILER_SERVICE_PROVIDER=<YourEmailAPIProvider>"  -e "MAILER_PASSWORD=<YourAPIKey>" -e "BASE_URL=localhost" -p 80:80 tellform/development

Testing Your Application

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

FORMA

Prerequisite:

Before you start, make sure you have

  1. Redis installed and running at 127.0.0.1:6379
  2. MongoDB installed and running at 127.0.0.1:27017 (OR specify the host and port in config/env/all)
  3. Docker installed and running

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:

$ npm install

Prepare .env file:

Create .env file at project root folder. Fill in MAILER_SERVICE_PROVIDER, MAILER_EMAIL_ID and MAILER_PASSWORD.

APP_NAME=forma
APP_DESC=
APP_KEYWORDS=
NODE_ENV=development
BASE_URL=localhost:5000
PORT=5000
username=forma_admin
MAILER_SERVICE_PROVIDER=
MAILER_EMAIL_ID=
MAILER_PASSWORD=
MAILER_FROM=forma@data.gov.sg
SIGNUP_DISABLED=false
SUBDOMAINS_DISABLED=true
DISABLE_CLUSTER_MODE=true
GOOGLE_ANALYTICS_ID=
RAVEN_DSN=
PRERENDER_TOKEN=
COVERALLS_REPO_TOKEN=

Deploy with Docker:

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

Where to get help

Gitter Chat

Official Twitter

Sponsors

Does your company use TellForm? Help keep the project bug-free and feature rich by sponsoring the project.



Backers

Love our work and community? Become a backer.

Contributors


David Baldwynn

💻 🔧 🚇 📖 💡 🎨 🔍 👀 ⚠️

Samuel Laulhau

💻 🌍

Arun Pattnaik

🎨

Thiên Toán

🐛 💻 📖

Adrian Portabales

🐛 💻

Peter Thaleikis

📖

Mickaël Andrieu

📖

Ahmad Luqman

📖

Peter Dave Hello

📖

Mentions on the Web

Mister Ad

t3n.de

BootCSS Expo

Product Hunt

Hacker News Post

Reddit Posts

Betapage

Opensource.com