diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-04-04 18:17:14 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-04-04 18:17:14 +0200 |
| commit | 044874053e06e9abf255bb4d0c547cfe31fcc21a (patch) | |
| tree | 079dcf0a8c1e270df4fc37713ad674e2315ad469 | |
| parent | 45dd33b3cd84aab455dafb81e877a421959f4a59 (diff) | |
Improve build documentation in README.md
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -56,19 +56,19 @@ git clone --recursive https://github.com/atlarge-research/opendc.git cd opendc/ ``` -In the directory you just entered, you need to set up a small configuration file. To do this, create a file called `keys.json` in the `opendc` folder. In this file, simply replace `your-google-oauth-client-id` with your `client_id` from the OAuth client ID you created. +In the directory you just entered, you need to set up a small configuration file. To do this, create a file called `keys.json` in the `opendc` folder. In this file, simply replace `your-google-oauth-client-id` with your `client_id` from the OAuth client ID you created. For a standard setup, you can leave the other settings as-is. ```json { + "DATABASE_LOCATION": "/data/database/opendc.db", + "FLASK_SECRET": "This is a super duper secret flask key", "OAUTH_CLIENT_ID": "your-google-oauth-client-id", - "SERVER_BASE_URL": "http://localhost:8081", "ROOT_DIR": "/opendc", - "FLASK_SECRET": "This is a super duper secret flask key", - "DATABASE_LOCATION": "/data/database/opendc.db" + "SERVER_BASE_URL": "http://localhost:8081" } ``` -Once this configuration file is set up, we're ready to get the install up and running: +Now, start the server: ```bash # Build the Docker image |
