Mariam-metho / app.py
kuro223's picture
89192
a1be761
raw
history blame contribute delete
171 Bytes
from api.index import app, db
# Create database tables if they don't exist
with app.app_context():
db.create_all()
if __name__ == '__main__':
app.run(debug=True)