Files
2026-04-15 10:32:46 +05:30

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)