/node-express-sequelize-starter

This is a boiler plate for NodeJS which uses express and sequelize for database management.

Primary LanguageJavaScriptMIT LicenseMIT

node-express-sequalize-starter

A Boilerplate application for building REST APIs using node, express and SQL databases.

Notes

Install dependencies

npm i

To setup the project

  • Create an environment file by copying the .env.example file and add respective values.

To run the project in development

npm run dev
For Linting files
npm run lint

Database migration notes:

For creating database migrations

npm run migration:create <migration-name>

For running the database migrations

npm run db:migrate