An open API service indexing awesome lists of open source software.

https://github.com/delsner/sports-challenge-server

Backend for simple sports challenge app
https://github.com/delsner/sports-challenge-server

Last synced: about 1 month ago
JSON representation

Backend for simple sports challenge app

Awesome Lists containing this project

README

          

## Prerequisites

## Setup (before first run)

go to your project root folder via command line
```
cd path/to/workspace/sports-challenge-server
```

**install node dependencies**

```
npm install
```

**set up your database**

* create a new directory where your database will be stored (it's a good idea to separate data and business logic - the data directory should be on a different place than your app)
* start the database server
```
mongod --dbpath relative/path/to/database
```

## running

start the web server

```
node server.js
```