The egg example project that uses egg-sequelize plugin.
see egg docs for more detail.
$ npm install
$ createdb example-dev --owner postgres
$ npm run migrate:up
$ npm run dev
$ open http://localhost:7001/users
Use EGG_SERVER_ENV=prod
to enable prod mode
$ createdb example-prod --owner postgres
$ NODE_ENV=production npm run migrate:up
$ EGG_SERVER_ENV=prod npm start
- Use
npm run lint
to check code style. - Use
npm test
to run unit test. - Use
npm run autod
to auto detect dependencies upgrade, see autod for more detail.