✏️ Free Opensource Alternative to TypeForm or Google Forms
Go to file
2016-04-27 20:55:29 +03:00
app re-enabled raven 2016-04-24 19:14:31 -04:00
config fixed formatting error in config/env/all.js 2016-04-24 19:53:20 -04:00
docs Update setup_sentry_server.md 2016-04-24 16:23:30 -07:00
public add public prefix to html2js conf 2016-04-27 20:55:29 +03:00
scripts fixed merge conflicts in app/models and app/tests 2015-10-06 13:24:02 -07:00
.bowerrc added automatic bower dependency injection 2015-07-03 12:25:02 -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 move populate_template_cache.js into dist and add dist to .gitignore 2016-04-23 18:07:34 +03: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 added cdn for angular-strap 2016-04-22 23:18:28 -04: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 fix docker-compose for dev #60 2016-04-25 14:22:54 +03:00
Dockerfile fix docker-compose for dev #60 2016-04-25 14:22:54 +03:00
ecosystem.json added production to ecosystem.json 2016-04-24 14:22:04 -04:00
gruntfile.js add public prefix to html2js conf 2016-04-27 20:55:29 +03: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 Bumped version number to 1.3.0 2016-04-24 14:11:40 -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
README.md Update README.md 2016-04-25 08:49:15 -07:00
server.js added node-coveralls to package.json 2015-11-23 13:06:02 -08:00

TellForm

Current stable release: v1.3.0

Build Status Dependency Status Code Climate

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

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 -Editable form submissions (half-done)

###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 -Create mockups for different user view designs

Quickstart

Install dependencies first.

$ npm install
$ bower install

Setup environment.

$ grunt build

Create your .env file. It should look like this

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

Currenty 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:

$ grunt default

To run production version:

$ grunt production

Your application should run on port 3000, 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.

Credits

Inspired/built off the great work of the MeanJS team.