From 2ee520d83429270f55bebe270d71e7dd950fa71f Mon Sep 17 00:00:00 2001 From: Jannik Becker Date: Mon, 20 Jan 2025 17:56:22 +0100 Subject: [PATCH] fix: typos from PR review --- dev-manuals/backend/get-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-manuals/backend/get-started.md b/dev-manuals/backend/get-started.md index 2d16eab..0c02a59 100644 --- a/dev-manuals/backend/get-started.md +++ b/dev-manuals/backend/get-started.md @@ -59,8 +59,8 @@ If the service to be run locally is the frontend: Else: * Navigate to the `graphql_gateway` submodule, open its `docker-compose.yml` and adjust the URLs of the set of services you want to run locally in the `environment` section as follows: http://~~app-\~~host.docker.internal:\/graphql -* Rebuild & restart the docker services via `compose.bat`/`.sh up --build`. The `gateway` container should now restart frequently because it can't reach the service to be run locally. This is desired behavior, since it now tries to fetch the adjusted URLs services graphql api from the machines `localhost`. -* Make sure the Spring Bott dev profile's database port is set correctly +* Rebuild & restart the docker services via `compose.bat`/`.sh up --build`. The `gateway` container should now restart frequently because it can't reach the services which are supposed to be run locally. This is desired behavior, since it now tries to fetch the adjusted URLs services graphql api from your machines `localhost`. +* Make sure the Spring Boot dev profile's database port is set correctly * Start the set of service you want to run locally on your machine using the dev profile, which can either be selected in the IDEA Ultimate "Run Configurations", the `application.properties` file or be passed to gradle as command line argument: `gradle bootRun --args="--spring.profiles.active=dev"` * The Dapr PubSub Events do not work when debugging in this way