The package consists of two folders:
- frontend
- backend (includes build version of frontend)
A demo video file has been included named as Demo-Video.mp4
(You should have nodejs and npm installed on your system.)
- Open terminal (on OS X) or command prompt (on Windows)
- Goto backend directory and enter:
cd backend
npm install
npm start
- Open another terminal window for the frontend repo and enter:
cd frontend
npm install
npm start
- To run the unit test for frontend, enter this command in another terminal window:
npm run test
- To create a build for deployment:
npm run build
The backend port has been configured to 3030 and the frontend port is at 3000. You can change this config in the config files at:
If everything works fine. Open this link in your browser:
Frontend : http://localhost:3000/
Backend : http://localhost:3030/
© 2016 This code was developed by Ankit Duseja.