Create demo app environment

This commit is contained in:
Ryan Ahearn
2022-11-02 09:09:16 -04:00
parent a46e3dbefc
commit 04e3b35a2f

View File

@@ -415,10 +415,13 @@ class Production(Config):
class Staging(Production):
pass
class Demo(Production):
pass
configs = {
'development': Development,
'test': Test,
'staging': Staging,
'demo': Demo,
'production': Production
}