From 98aab4cd4e11787b20043ac5c9af7c3f3c28590b Mon Sep 17 00:00:00 2001 From: Ivan Alglave <64541968+hihubbIe@users.noreply.github.com> Date: Thu, 2 Feb 2023 09:50:53 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ec526a..bc85e8d 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ $ npm install ### Setting up your config file -In `/src/config/`, make a copy of the file `config.template.json` and rename it to `config.json`. +In `/dist/config/`, make a copy of the file `config.template.json` and rename it to `config.json`. Set the following field : ```json @@ -42,7 +42,7 @@ You may replace `3001` by any port you wish to run the server on. ### Setting up the database This server uses [Mongodb](https://www.mongodb.com/) for persistent data storage. To initiate the database, you must have an instance of mongo running. You may use the dockerfile located in `docker/` at the root of the project and run the command `$ docker-compose up -d` to create and run a mongo instance as a background task (get [Docker](https://www.docker.com/)). -In the `src/config/config.json`, set the following field : +In the `dist/config/config.json`, set the following field : ```json "mongodb": { -- GitLab