Skip to content
Snippets Groups Projects
Commit 186c73c7 authored by Shane Hutchins's avatar Shane Hutchins
Browse files

Updating environment variables

parent bf40af52
No related branches found
No related tags found
1 merge request!347Updating environment variables
Pipeline #186021 failed
......@@ -9,15 +9,11 @@ LEGAL_BASE_URL = os.getenv('LEGAL_BASE_URL')
PARTITION_API = os.getenv('PARTITION_BASE_URL','http://partition') + '/api/partition/v1'
# Diagnostics should never be enabled in true production environments
ENABLE_DEV_DIAGNOSTICS = False
if "ENABLE_DEV_DIAGNOSTICS" in os.environ:
ENABLE_DEV_DIAGNOSTICS = True
ENABLE_DEV_DIAGNOSTICS = os.getenv("ENABLE_DEV_DIAGNOSTICS", 'False').lower() in ('true', '1', 't')
# Diagnostics should never be enabled in true production environments
# Create DUMP outputs - for troubleshooting eval, etc
ENABLE_DEV_DIAGNOSTICS_DUMPS = False
if "ENABLE_DEV_DIAGNOSTICS_DUMPS" in os.environ:
ENABLE_DEV_DIAGNOSTICS_DUMPS = True
ENABLE_DEV_DIAGNOSTICS_DUMPS = os.getenv("ENABLE_DEV_DIAGNOSTICS_DUMPS", 'False').lower() in ('true', '1', 't')
localhost_opa_url = 'http://localhost:8181'
OPA_URL = os.getenv('OPA_URL', localhost_opa_url)
......@@ -39,12 +35,10 @@ USER_PERMISION = 'service.policy.user'
ADMIN_PERMISION = 'service.policy.admin'
# Pre Processor
ENABLE_TRANSLATE_PREPROCESSOR=True
ENABLE_TRANSLATE_PREPROCESSOR = os.getenv("ENABLE_TRANSLATE_PREPROCESSOR", 'True').lower() in ('true', '1', 't')
# Admin UI
ENABLE_ADMIN_UI = False
if "ENABLE_ADMIN_UI" in os.environ:
ENABLE_ADMIN_UI = True
ENABLE_ADMIN_UI = os.getenv("ENABLE_ADMIN_UI", 'False').lower() in ('true', '1', 't')
# OPA bug in OPA Version: 0.43.0 where policy IDs are get a leading /
OPA_BUG_FORCE_SLASH=False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment