From d873c8b7c6545a76052e66cf46c78927a87ad5d4 Mon Sep 17 00:00:00 2001 From: Hampus Lavin Date: Fri, 18 Oct 2024 11:08:00 +0200 Subject: [PATCH] fix: Incorrect db user name in docker compose. (#191) * fix: incorrect db user name in docker compose, reformat config * fix: remove irrelevant information --- docs/06-concepts/18-testing/01-get-started.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/06-concepts/18-testing/01-get-started.md b/docs/06-concepts/18-testing/01-get-started.md index fb89ad0..75eea6a 100644 --- a/docs/06-concepts/18-testing/01-get-started.md +++ b/docs/06-concepts/18-testing/01-get-started.md @@ -35,7 +35,7 @@ postgres_test: ports: - '9090:5432' environment: - POSTGRES_USER: postgres_test + POSTGRES_USER: postgres POSTGRES_DB: _test POSTGRES_PASSWORD: "" volumes: @@ -95,7 +95,7 @@ services: ports: - '9090:5432' environment: - POSTGRES_USER: postgres_test + POSTGRES_USER: postgres POSTGRES_DB: _test POSTGRES_PASSWORD: "" volumes: @@ -124,11 +124,12 @@ volumes: 3. Create a `test.yaml` file and add it to the `config` directory: ```yaml -# This is the configuration file for your local test environment. All ports are set to zero in this file which makes the server find the next available port. This is needed to enable running tests concurrently. +# This is the configuration file for your test environment. +# All ports are set to zero in this file which makes the server find the next available port. +# This is needed to enable running tests concurrently. To set up your server, you will # need to add the name of the database you are connecting to and the user name. # The password for the database is stored in the config/passwords.yaml. - # Configuration for the main API test server. apiServer: port: 0