Skip to content

30DaysOfCode/node-be

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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