summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-16 11:25:08 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-16 11:25:08 +0200
commit67e6c6344e2828bcda8700e44da3ff5c96bc035b (patch)
tree8732199f7124e37c068535071707d160b7de153c /config.py
parentd304a470e5a9fae6fc0c8975f050cb7aa290f74a (diff)
Cleaned up the code to generate test data
Diffstat (limited to 'config.py')
-rw-r--r--config.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/config.py b/config.py
index 7d01933..bff125a 100644
--- a/config.py
+++ b/config.py
@@ -5,8 +5,12 @@ class Config:
ASSETS_DEBUG = False
-class ProductionConfig(Config):
- pass
+class YouthConfig(Config):
+ DATABASE = "test_data_large.csv"
+
+
+class SeniorConfig(Config):
+ DATABASE = "test_data_large.csv"
class DevelopmentConfig(Config):
@@ -14,3 +18,4 @@ class DevelopmentConfig(Config):
DEVELOPMENT = True
TEMPLATES_AUTO_RELOAD = True
ASSETS_DEBUG = True
+ DATABASE = "test_data_large.csv"