aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-11-09 18:19:48 +0000
committerKaran Jayachandra <mail@karanjayachandra.com>2024-11-09 18:19:48 +0000
commit1a7ae4bc2b759de7a03e6ad83632e6ad678754c8 (patch)
tree5b771e755f3a55c6794c649431de35798242a2e0 /config.py
parent2b18e0929a0b3e083cbe9e5e8ffd421ed8d17e52 (diff)
parent75a3ef7d14fcaedab29da46ba3dc5cf9c1bab699 (diff)
Merge branch 'feature/package' into 'develop'
Implemented packaging and command line arguments See merge request KaranJayachandra/match_up!10
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