From fe66ed2095ea2bbd616e6566b88769496914ba05 Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Wed, 2 Nov 2022 09:09:16 -0400 Subject: [PATCH] Create demo app environment --- app/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config.py b/app/config.py index f10767bcd..470ca89a3 100644 --- a/app/config.py +++ b/app/config.py @@ -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 }