Signature Validator App
- Make a tool that validates signatures of a user by tracking the pattern of the signatures.
The demo app is hosted on Heroku, welcome to have a try!
The project is being organized on Trello, discussion happens on Slack, and documentation are defined in the README files.
###Collaborators:
- Jeffry Tupa (Give the idea of the project and develop frond-end part)
- Keith Stewart (Organize code based on hapi-ninja Boilerplate, which built by Saul, thanks)
- Zhaoxin Sun (Do back-end part, mainly on api and validation algorithm)
- Sid Pareek (Give lots of idea on requiments of the project)
- Ilmo Jung (Focus on security of the project)
- Saul Maddox , Alan Lee (Always help us out when we have technical quesions)
- Sandbox folder for prototyping
- Database (MongoDB instance)
- Server framework (hapi.js)
- Client framework (Foundation)
- Documentation
- Hosting (Heroku for now)
- Client side scaffolding (react, angular, ember)
NodeJS must installed. Install gulp globally: npm install --global gulp
To run the server and follow the steps below:
- Run
npm install
from the command prompt to install any dependencies that you have not already installed - Run
gulp serve-dev
to run the server and watch for and restart the server after any changes to server files - Open browser and navigate to http://localhost:3000/
- move to
public/client_example/react
, runnpm install
from the command prompt to install all dependencies - Run
npm run dev
to launch webpack-server which serve react example locally. - Open browser and navigate to http://localhost:8080/
- The "public" folder for front-end (client side) code (including different frontend framework example).
- The "server" folder for server side code.
- server.js (main file)
- package.json (package management)
- gulpfile.js (build management)