Got the app to auto-reload when running in development

This commit is contained in:
Gregory Ballantine
2025-11-18 15:54:21 -05:00
parent 5db50bc271
commit 5a3eb16a7f
2 changed files with 12 additions and 3 deletions

7
app.py
View File

@@ -1,3 +1,6 @@
import .app
from app import create_app
app.create_app()
app = create_app()
if __name__ == "__main__":
app.run(debug=True)