Add Documentation for Installation with Docker

This commit is contained in:
Robert Schäfer 2018-10-19 23:19:32 +02:00
parent 91fb18f77d
commit 67e330d10e

View File

@ -23,6 +23,26 @@
## Quick Start
### Installation with Docker
Run:
```sh
docker-compose up
# if you want seed data
# open another terminal and run
docker-compose exec backend yarn run seedDb
```
App is [running on port 4000](http://localhost:4000/)
To wipe out your neo4j database run:
```sh
docker-compose down -v
```
### Installation without Docker
Install dependencies:
```bash