8 lines
No EOL
146 B
Python
8 lines
No EOL
146 B
Python
from app import create_app
|
|
|
|
|
|
app, celery = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
with app.app_context():
|
|
app.run(debug=True) |