create project and create model and dashboard

This commit is contained in:
2025-12-11 10:16:43 +05:30
parent 2371202ac3
commit 2e62320167
55 changed files with 1072 additions and 0 deletions

9
run.py Normal file
View File

@@ -0,0 +1,9 @@
from app import create_app, db
app = create_app()
with app.app_context():
db.create_all()
if __name__ == "__main__":
app.run(debug=True, port=5001)