aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/config.py b/config.py
deleted file mode 100644
index 7d01933..0000000
--- a/config.py
+++ /dev/null
@@ -1,16 +0,0 @@
-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