Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/delsner/newsletter-server

This is the server-side for the newsletter app.
https://github.com/delsner/newsletter-server

Last synced: about 16 hours ago
JSON representation

This is the server-side for the newsletter 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/newsletter-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
```