Manage your work - Demo
Steps to install:-
- git clone https://github.com/prasad8mhatre/kanban-board
- npm install - download project dependency
- nodemon - start this application on port localhost:3000
- Create new account & start using it.
- change your server URL in frontend app/app/app.js to http://localhost:3000/ for running it locally.
- Run testcase:- npm test
Project structure:- . ├── app ├── config ├── controllers ├── models ├── public ├── routes ├── test ├── uploads └── views
- /app/app --frontend project
- /config - passport config
- /controller - node.js backend controller
- /models - mongoose model
- /routes - express routes
- /test - Supertest, chai, sinon test cases
- /views - server side jade(pug) view
Special Thanks to sahat for awesome boilerplate for Node.js web applications- hackathon-starter