move defaults to defaults folder

This commit is contained in:
2025-03-10 19:52:55 +01:00
parent d0ff884dec
commit 9592e2daf0
6 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ def create_app(test_config: None = None) -> Flask:
app.config.from_mapping(
DATABASE=os.path.join(app.instance_path, "tlapbot.sqlite")
)
app.config.from_object('tlapbot.default_config')
app.config.from_object('tlapbot.default_redeems')
app.config.from_object('tlapbot.defaults.default_config')
app.config.from_object('tlapbot.defaults.default_redeems')
app.config.from_pyfile('config.py', silent=True)
app.config.from_pyfile('redeems.py', silent=True)
View File
View File