aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-16 11:46:39 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-16 11:46:39 +0200
commitf6f8cb4f1bf643a8d29f917d5c977cb2343f2672 (patch)
tree8bbd6d244e0f19196a71d67274f25da29f01a44a /config.py
parentfbed8387a39e42cee7235384d7f8380ee158a3b3 (diff)
Clean folder and configuration
Diffstat (limited to 'config.py')
-rw-r--r--config.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/config.py b/config.py
index bff125a..7d01933 100644
--- a/config.py
+++ b/config.py
@@ -5,12 +5,8 @@ class Config:
ASSETS_DEBUG = False
-class YouthConfig(Config):
- DATABASE = "test_data_large.csv"
-
-
-class SeniorConfig(Config):
- DATABASE = "test_data_large.csv"
+class ProductionConfig(Config):
+ pass
class DevelopmentConfig(Config):
@@ -18,4 +14,3 @@ class DevelopmentConfig(Config):
DEVELOPMENT = True
TEMPLATES_AUTO_RELOAD = True
ASSETS_DEBUG = True
- DATABASE = "test_data_large.csv"