11 lines
235 B
Python
11 lines
235 B
Python
from app import create_app, db
|
|
|
|
app = create_app()
|
|
app.config['MAX_CONTENT_LENGTH'] = 64 * 1024 * 1024
|
|
|
|
|
|
if __name__ == '__main__':
|
|
with app.app_context():
|
|
db.create_all()
|
|
app.run(host='0.0.0.0', port=5002, debug=True)
|