From d6015f77f0831a5daf557c360f86305890820e76 Mon Sep 17 00:00:00 2001 From: naterfute Date: Mon, 7 Apr 2025 01:34:13 -0700 Subject: [PATCH] fix: I kinda hate the templating system --- blueprints/plane/template.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blueprints/plane/template.toml b/blueprints/plane/template.toml index 25cb877..9e67f39 100644 --- a/blueprints/plane/template.toml +++ b/blueprints/plane/template.toml @@ -8,8 +8,8 @@ secret_key = "${base64:48}" [config] env = [ -"Domain=${main_domain}", -"WEB_URL=${main_domain}", +"Domain=${domain}", +"WEB_URL=${Domain}", "PGHOST=plane-db", "PGDATABASE=plane", "POSTGRES_USER=${username}", @@ -40,7 +40,7 @@ env = [ "DEBUG=0", "SENTRY_DSN=", "SENTRY_ENVIRONMENT=production", -"CORS_ALLOWED_ORIGINS=${main_domain}", +"CORS_ALLOWED_ORIGINS=${Domain}", "GUNICORN_WORKERS=1", "USE_MINIO=1", "DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@plane-db/plane",