Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 539 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 539 Bytes

30 DAYS OF CODE BACKEND

How to setup

  • Clone and CD into the project
$ git clone https://github.com/30DaysOfCode/node-be.git
  • Install Dependencies. the project users npm for package(s) management
$ npm install
  • Set up configuration details using the configuration template.
$ cp src/config/config.example.js src/config/config.js

  • Add your credentials to the config.js file

  • Run the app in producion mode
$ npm start
  • Or in development mode
$ npm run start:dev