6 lines
128 B
Python
6 lines
128 B
Python
from app import app, db
|
|
|
|
if __name__ == '__main__':
|
|
with app.app_context():
|
|
db.create_all()
|
|
app.run(debug=True)
|