Add a sandbox environment for manual testing on cloud.gov

This commit is contained in:
Ryan Ahearn
2022-11-08 11:45:37 -05:00
parent 6d33a4621b
commit 00e14dbaf7
6 changed files with 106 additions and 8 deletions

View File

@@ -145,11 +145,15 @@ class Production(Config):
class Staging(Production):
BASIC_AUTH_FORCE = True
HEADER_COLOUR = '#6F72AF' # $mauve
HEADER_COLOUR = '#00ff00' # $green
class Demo(Staging):
pass
HEADER_COLOUR = '#6F72AF' # $mauve
class Sandbox(Staging):
HEADER_COLOUR = '#ff0000' # $red
class Scanning(Production):
@@ -167,5 +171,6 @@ configs = {
'scanning': Scanning,
'staging': Staging,
'demo': Demo,
'sandbox': Sandbox,
'production': Production
}