allow open id to come in via env
This commit is contained in:
parent
00bdde16f6
commit
5cbffe2e96
|
@ -19,10 +19,14 @@ SPIFFWORKFLOW_BACKEND_RUN_BACKGROUND_SCHEDULER = (
|
||||||
== "true"
|
== "true"
|
||||||
)
|
)
|
||||||
|
|
||||||
SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL = (
|
SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL = environ.get(
|
||||||
f"https://keycloak.{environment_identifier_for_this_config_file_only}"
|
"SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL",
|
||||||
".spiffworkflow.org/realms/spiffworkflow"
|
default=(
|
||||||
|
f"https://keycloak.{environment_identifier_for_this_config_file_only}"
|
||||||
|
".spiffworkflow.org/realms/spiffworkflow"
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND = (
|
SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND = (
|
||||||
f"https://{environment_identifier_for_this_config_file_only}.spiffworkflow.org"
|
f"https://{environment_identifier_for_this_config_file_only}.spiffworkflow.org"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue