Skip to content

Latest commit

 

History

History
89 lines (57 loc) · 1.25 KB

readme.md

File metadata and controls

89 lines (57 loc) · 1.25 KB

Nize

Summary

Application to both organize and complete tasks in a format designed to encourage single-tasking.

Wireframes

https://app.moqups.com/nzey/e0lj15dk7s...

Seed Project Directory

express-react-redux-starter

Run Locally

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

  1. Navigate to http://localhost:3000

Testing

Run test once

npm run test

Test watch

npm run test:watch

Linting

Eslint with Airbnb Eslint configuration

npm run lint

Production

Build for production

npm run build
npm install pm2 -g

Start production server

npm run start

Contributing

License