This commit is contained in:
Beverly Nguyen
2025-07-31 12:20:04 -07:00
parent 1b04d1fd83
commit 14ff289a36
2 changed files with 5 additions and 3 deletions

View File

@@ -161,7 +161,7 @@
"filename": "app/config.py", "filename": "app/config.py",
"hashed_secret": "577a4c667e4af8682ca431857214b3a920883efc", "hashed_secret": "577a4c667e4af8682ca431857214b3a920883efc",
"is_verified": false, "is_verified": false,
"line_number": 119, "line_number": 121,
"is_secret": false "is_secret": false
} }
], ],
@@ -634,5 +634,5 @@
} }
] ]
}, },
"generated_at": "2025-07-31T19:16:39Z" "generated_at": "2025-07-31T19:19:10Z"
} }

View File

@@ -16,7 +16,9 @@ class Config(object):
API_PUBLIC_WS_URL = getenv("API_PUBLIC_WS_URL", "localhost") API_PUBLIC_WS_URL = getenv("API_PUBLIC_WS_URL", "localhost")
ADMIN_BASE_URL = getenv("ADMIN_BASE_URL", "http://localhost:6012") ADMIN_BASE_URL = getenv("ADMIN_BASE_URL", "http://localhost:6012")
HEADER_COLOUR = "#81878b" # mix of dark-grey and mid-grey HEADER_COLOUR = (
"#81878b" # mix of dark-grey and mid-grey
)
ASSETS_DEBUG = False ASSETS_DEBUG = False