PilznoProduction/wsgi.py
2024-09-04 20:22:49 +03:00

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)