✏️ Free Opensource Alternative to TypeForm or Google Forms
Go to file
2016-11-09 10:02:12 -08:00
app fixed form analyze view 2016-11-09 10:02:12 -08:00
config fixed setup script 2016-11-08 14:55:46 -08:00
design/screenshots added translation to signup header 2016-07-04 14:13:22 -07:00
docs added dnsmasq setup file 2016-11-02 11:31:15 -07:00
public fixed form analyze view 2016-11-09 10:02:12 -08:00
scripts fixed setup script 2016-11-08 14:55:46 -08: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 e2e_tests 2016-11-08 14:46:20 -08:00
.jshintrc fix jshint 2016-10-23 11:31:18 +07:00
.slugignore first commit 2015-06-29 15:51:29 -07:00
.travis.yml add redis to travis 2016-06-18 08:54:10 +02:00
app.json Update app.json 2015-11-21 12:59:03 -08:00
bower.json fixed overflow of analyze table 2016-11-02 14:32:12 -07:00
conf.json added jasmine-core 2015-12-12 12:13:43 -08:00
dns_masq_setup_osx.md added dnsmasq setup file 2016-11-02 11:31:15 -07:00
docker-compose.override.yml.template Create docker-compose.override.yml.template 2016-04-21 12:16:52 -07:00
docker-compose.yml fixed signup error 2016-08-17 12:04:42 -07:00
Dockerfile fixed signup error 2016-08-17 12:04:42 -07:00
ecosystem.json fixed multiple choice field 2016-05-20 15:08:59 -07:00
gruntfile.js got subdomains to work in production 2016-06-20 16:56:09 -07:00
karma.conf.js added jasmine-core 2015-12-12 12:13:43 -08:00
LICENSE.md first commit 2015-06-29 15:51:29 -07:00
package.json fixed form analyze view 2016-11-09 10:02:12 -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 Create PULL_REQUEST_TEMPLATE.md 2016-05-21 12:52:43 -07:00
README.md updated version 2016-11-08 15:01:44 -08:00
server.js fixed form analyze view 2016-11-09 10:02:12 -08:00

TellForm 2.0.0

Donate Stories in Ready Build Status Project Status Code Climate Codacy Badge Gitter

TellForm is an opensource alternative to TypeForm built ontop of nodejs that can create stunning forms from PDFs or from scratch

See examples here

####Sponsored by

##Screenshots

##Features

###Currently following features are implemented: -Multi-Language Support -11 possible types of form fields -Editable startpage -Export Submissions to XLS, JSON or CSV -Native Analytics and Google Analytics Support -Custom subdomains -Embeddable Forms -Form API

###TODO: -Implement encryption for all form data -Integrate AWS for PDF saving -Add Typeform API integration -Add plugin/3rd party integration support (ala Slack) -Create wiki for easy installation and setup

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_sparkpost_apikey
MAILER_SERVICE_PROVIDER=SparkPost
BASE_URL=yourdomain.com
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

Edit the env config in gruntfile.js to make sure your .env file is being used. If you don't include this your app won't run

To run development version:

Set NODE_ENV=development in .env file $ grunt

To run 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

Testing Your Application

You can run the full test suite included with MEAN.JS 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

Where to get help

Gitter Chat

Official Twitter

Contributor list

David Baldwynn

Samuel Laulhau

Arun Pattnaik

Mentions on the Web

Mister Ad

t3n.de

BootCSS Expo

Product Hunt

Hacker News Post

Reddit Posts

Betapage

Credits

Inspired/built off the great work of the MeanJS team and Typeform