Clone the repo and run
npm install
You can run the database in docker with the following commands:
docker run --name robocodecup-mongo -p 27017:27017 -d mongo
To generate api documentation please use the apidoc package.
npm install -g apidoc
apidoc -i "resources" -o apidoc
Run the server and go to /apidoc to see the documentation.
List all teams
{
"status": "ok",
"response": [
{
"name": "USEB 2016",
"id": "1"
}
]
}