This is the API starter. It is a REST API built with Node.js, Express.js, and MongoDB.
To get started, clone this repository and run npm install to install the dependencies. Then, run npm start to start the server. The server will be running on port 8080.
The API documentation can be found here.
This project is licensed under the MIT License - see the LICENSE file for details.
Clone this repository to your local machine using
$ git cloneInstall npm packages
$ npm installCreate a .env file in the root directory and add the following
NODE_ENV=
MONGO_USERNAME=
MONGO_PASSWORD=
MONGO_URL=
SECRET=
APP_OWNER_ID=
RIOT_API_KEY=
PORT=Run the server
$ npm startRun the server with nodemon
$ npm run devRun the tests
$ npm test