Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 467 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 467 Bytes

express-boilerplate

Boilerplate for a Node Express API.

Getting Started

Clone the project locally

$ git clone https://github.com/sergiouve/express-boilerplate

Install npm dependencies

$ npm ci

Running migrations and seeders

Run all migrations

$ npm run migrate

Rollback migrations

$ npm run migrate:rollback

Run seeders

$ npm run seeders

Testing

Run the tests

$ npm run test