From 6f74c5c6aa4fb57902f01c7d916fbe649c94c354 Mon Sep 17 00:00:00 2001 From: Miha Drofenik Date: Sat, 18 Nov 2023 12:44:47 +0100 Subject: [PATCH] fix: Changed the initial APP_URL in the docker-compose.yml file so that the dev environment works out of the box --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index f43f97ef..6322e26c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,7 +22,7 @@ services: # Recommended: 63 random alpha-numeric characters # Generate using: https://www.grc.com/passwords.htm TOKEN_SECRET: change_me_in_production - APP_URL: 'localhost:8080' + APP_URL: 'http://localhost:8080' ASSETS_PATH: '/usr/src/electron-release-server/releases' depends_on: - db