fix: add snek.d* to gitignore and set default sqlite db path in app init

This commit is contained in:
2025-01-27 00:06:13 +00:00
parent 20c4791f54
commit d92e9276ae
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ class Application(BaseApplication):
return await super().render_template(template, request, context)
app = Application()
app = Application(db_path="sqlite:///snek.db")
if __name__ == "__main__":