From 67e6c6344e2828bcda8700e44da3ff5c96bc035b Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Wed, 16 Oct 2024 11:25:08 +0200 Subject: Cleaned up the code to generate test data --- config.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'config.py') 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" -- cgit v1.3.1