This repository contains the backend for the Orders Application
- Node / NPM
- MongoDB database API Key
To install the application's dependencies, run:
npm install
Add a .env file to the root directory of the project named '.env' and insert the following:
DATABASE_URL=<MONGO_DB_API_KEY>
PORT=3003
Install Nodemon globally using the following command:
npm install -g nodemon
To launch the server in Dev mode with hot reloads, run the following command:
nodemon start.js
To launch the application normally, run the following command:
npm start