summaryrefslogtreecommitdiff
path: root/src/match_up/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/match_up/config.py')
-rw-r--r--src/match_up/config.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/match_up/config.py b/src/match_up/config.py
new file mode 100644
index 0000000..7d01933
--- /dev/null
+++ b/src/match_up/config.py
@@ -0,0 +1,16 @@
+class Config:
+ DEBUG = False
+ DEVELOPMENT = False
+ CSRF_ENABLED = True
+ ASSETS_DEBUG = False
+
+
+class ProductionConfig(Config):
+ pass
+
+
+class DevelopmentConfig(Config):
+ DEBUG = True
+ DEVELOPMENT = True
+ TEMPLATES_AUTO_RELOAD = True
+ ASSETS_DEBUG = True