Application to both organize and complete tasks in a format designed to encourage single-tasking.
https://app.moqups.com/nzey/e0lj15dk7s...
Clone Repo
git clone https://github.com/nzey/nize
Install external dependencies
- Node and NPM
- PostgreSQL
- Sequelize CLI (
npm install -g sequelize-cli
)
Install local dependencies
cd nize
npm install
Start postgres server if not started:
postgres -D /usr/local/pgsql/data >logfile 2>&1 &
Clear and Seed database
sequelize db:seed:undo:all
sequelize db:seed:all
Start development server with hot reloading:
npm run dev
- Navigate to http://localhost:3000
Run test once
npm run test
Test watch
npm run test:watch
Eslint with Airbnb Eslint configuration
npm run lint
Build for production
npm run build
npm install pm2 -g
Start production server
npm run start