minimal working

This commit is contained in:
2024-06-24 10:45:06 -04:00
commit 229b3e2b07
16 changed files with 642 additions and 0 deletions

6
db_bootstrap.py Normal file
View File

@@ -0,0 +1,6 @@
from app import app, db
with app.app_context():
db.create_all()
print("DB success")