From 713ae53c2f5f380cb973a46fb4d15104e3815750 Mon Sep 17 00:00:00 2001 From: leex279 Date: Fri, 22 Aug 2025 18:02:00 +0200 Subject: [PATCH] Use generic YOUR_PROFILE placeholder instead of hardcoded 'full' profile This allows users to choose their preferred profile (backend, full, etc.) rather than assuming they always want the full profile for error recovery. --- archon-ui-main/src/components/BackendStartupError.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archon-ui-main/src/components/BackendStartupError.tsx b/archon-ui-main/src/components/BackendStartupError.tsx index 3aee49e..d47ad8d 100644 --- a/archon-ui-main/src/components/BackendStartupError.tsx +++ b/archon-ui-main/src/components/BackendStartupError.tsx @@ -49,7 +49,7 @@ export const BackendStartupError: React.FC = () => { After fixing the issue in your .env file, recreate the Docker containers:

- docker compose down && docker compose --profile full up -d + docker compose down && docker compose --profile YOUR_PROFILE up -d

Note: Use 'down' and 'up', not 'restart' - containers need to be recreated to load new environment variables