Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 620 Bytes

readme.md

File metadata and controls

18 lines (14 loc) · 620 Bytes

Node.js training

Pakhuta Siarhei

Application start

  1. npm install - install application dependencies
  2. npm run postgres - pull a Postgres Docker image and run it
  3. npm run migrate - run a script to fill postgres database
  4. npm run mongodb - pull a MongoDB Docker image and run it
  5. npm start - start an application

Application stop

  1. npm run postgres:stop - stop a Postgres Docker container
  2. npm run mongodb:stop - stop a MongoDB Docker container

Development

  • npm run eslint - run a script for checking code style
  • npm run build - build an application to the /dist folder