diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-07-01 15:16:34 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:47:21 +0200 |
| commit | 7f27a6370a0af25e1bf6ff8f46360c6c26c21e0b (patch) | |
| tree | c146f1816322ae809b0ca419dc55db4583baa922 /web-server/README.md | |
| parent | 586d1c723dbae95424b076f26da88fcd227f2f42 (diff) | |
Restrict PUT
Diffstat (limited to 'web-server/README.md')
| -rw-r--r-- | web-server/README.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web-server/README.md b/web-server/README.md index ff50cb36..e5a46016 100644 --- a/web-server/README.md +++ b/web-server/README.md @@ -70,7 +70,14 @@ In `opendc-web-server/static/index.html`, add your own `OAUTH_CLIENT_ID` in `con #### Set up the database -Run `docker-compose build` and `docker-compose up` in the [`mongodb` directory](../mongodb) of the main OpenDC repository to get a database setup up and running. +You can selectively run only the database services from the standard OpenDC `docker-compose` setup: + +```bash +docker-compose build mongo mongo-express +docker-compose up mongo mongo-express +``` + +This will set you up with a running MongoDB instance and a visual inspection tool running on [localhost:8082](http://localhost:8082), with which you can view and manipulate the database. ### Local Development |
