allow everything to get overidden
This commit is contained in:
parent
d04b941ea3
commit
97b22d2930
|
@ -28,12 +28,17 @@ SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL = environ.get(
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND = (
|
SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND = environ.get(
|
||||||
f"https://{environment_identifier_for_this_config_file_only}.spiffworkflow.org"
|
"SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND",
|
||||||
|
default=f"https://{environment_identifier_for_this_config_file_only}.spiffworkflow.org",
|
||||||
)
|
)
|
||||||
SPIFFWORKFLOW_BACKEND_URL = f"https://api.{environment_identifier_for_this_config_file_only}.spiffworkflow.org"
|
SPIFFWORKFLOW_BACKEND_URL = environ.get(
|
||||||
SPIFFWORKFLOW_BACKEND_CONNECTOR_PROXY_URL = (
|
"SPIFFWORKFLOW_BACKEND_URL",
|
||||||
f"https://connector-proxy.{environment_identifier_for_this_config_file_only}.spiffworkflow.org"
|
default=f"https://api.{environment_identifier_for_this_config_file_only}.spiffworkflow.org",
|
||||||
|
)
|
||||||
|
SPIFFWORKFLOW_BACKEND_CONNECTOR_PROXY_URL = environ.get(
|
||||||
|
"SPIFFWORKFLOW_BACKEND_CONNECTOR_PROXY_URL",
|
||||||
|
default=f"https://connector-proxy.{environment_identifier_for_this_config_file_only}.spiffworkflow.org",
|
||||||
)
|
)
|
||||||
SPIFFWORKFLOW_BACKEND_GIT_PUBLISH_CLONE_URL = environ.get(
|
SPIFFWORKFLOW_BACKEND_GIT_PUBLISH_CLONE_URL = environ.get(
|
||||||
"SPIFFWORKFLOW_BACKEND_GIT_PUBLISH_CLONE_URL",
|
"SPIFFWORKFLOW_BACKEND_GIT_PUBLISH_CLONE_URL",
|
||||||
|
|
Loading…
Reference in New Issue