✏️ Free Opensource Alternative to TypeForm or Google Forms
Go to file
2016-06-08 19:56:42 +02:00
app fixed merged 2016-06-07 13:02:34 -07:00
config export supportedFields in injector 2016-06-08 19:52:15 +02:00
design/screenshots optimize png images losslessly using zopflipng 2016-05-22 15:40:10 +08:00
docs updated eslint 2016-04-28 23:00:41 -07:00
public fix star in demo 2016-06-08 19:56:42 +02:00
scripts fixed setup script 2016-06-07 12:59:12 -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 2016-05-20 13:35:50 -07:00
.jshintrc got css and js files to pass linting 2016-04-16 22:45:17 -04:00
.slugignore first commit 2015-06-29 15:51:29 -07:00
.travis.yml Fixed tabbing validation error in travis.yml 2016-04-21 11:02:32 -07:00
app.json Update app.json 2015-11-21 12:59:03 -08:00
bower.json fixed dropdown option value bug 2016-06-04 20:13:42 -07:00
conf.json added jasmine-core 2015-12-12 12:13:43 -08:00
docker-compose.override.yml.template Create docker-compose.override.yml.template 2016-04-21 12:16:52 -07:00
docker-compose.yml export supportedFields in injector 2016-06-08 19:52:15 +02:00
Dockerfile fix docker-compose for dev #60 2016-04-25 14:22:54 +03:00
ecosystem.json fixed multiple choice field 2016-05-20 15:08:59 -07:00
gruntfile.js exclude form’s demo, lib and dist from general build 2016-06-08 19:49:48 +02: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 setup script 2016-06-07 12:59:12 -07: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 Update README.md 2016-06-07 12:44:52 -07:00
server.js fixed form field validation for multiple choice and checkbox 2016-06-04 00:00:31 -07:00

TellForm

Current stable release: v1.3.0

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

##Demo Forms Job Application Example

Contact Form Example

Patient Registration Example

##Screenshots screenshot

Features

###Currently following features are implemented: -User login system to manage forms -User CRUD -Form CRUD -11 possible types of form fields -Editable startpage -Push form data to OsacrHost EMR -Create forms from FDF-formatted PDFs (unstable) -Save form submissions as FDF-formatted PDFs (unstable) -Toggle forms as private (viewable only if logged in as Form's user) or public (viewable by anyone) -Drag and drop functionality to editing form field order -Viewable form submissions -Google Analytics Support -In-app Analytics (dropoff rate of fields, conversion rate, etc)

###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 Redis installed and running at 127.0.0.1:6379

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

Create this directory or you will get errors.

mkdir uploads/pdfs

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=development 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

Running in a secure environment

To run your application in a secure manner you'll need to use OpenSSL and generate a set of self-signed certificates. Unix-based users can use the following command:

$ sh ./scripts/generate-ssl-certs.sh

Windows users can follow instructions found here. After you've generated the key and certificate, place them in the config/sslcerts folder.

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

Credits

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