aboutsummaryrefslogtreecommitdiff
path: root/src/match_up/config.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-11-09 19:11:26 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2024-11-09 19:11:26 +0100
commit75a3ef7d14fcaedab29da46ba3dc5cf9c1bab699 (patch)
tree5b771e755f3a55c6794c649431de35798242a2e0 /src/match_up/config.py
parentaa73a7618075b54940d32b7b1e0e751b301bee4d (diff)
Added the functionality to automatically generate names or use a local database
Diffstat (limited to 'src/match_up/config.py')
-rw-r--r--src/match_up/config.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/match_up/config.py b/src/match_up/config.py
deleted file mode 100644
index 7d01933..0000000
--- a/src/match_up/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