From f6476206c8065da19d0ea6933c1f0fa4f7df06ad Mon Sep 17 00:00:00 2001 From: Joe Stanley Date: Sun, 1 Sep 2024 15:32:01 -0700 Subject: [PATCH] fixed config path issue --- backend/wordwall/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/wordwall/configuration.py b/backend/wordwall/configuration.py index dade51a..447c0bc 100644 --- a/backend/wordwall/configuration.py +++ b/backend/wordwall/configuration.py @@ -12,7 +12,7 @@ from simple_toml_configurator import Configuration -CONFIG_FILE_PATH = Path(os.getenv("CONFIG_FILE", "./config/app.conf")) +CONFIG_FILE_PATH = Path(os.getenv("CONFIG_FILE", "./config")) DEFAULT_CONFIGURATION = { "application": {