This commit is contained in:
Yisroel Baum 2024-09-04 20:22:49 +03:00
commit c97e3e8d4e
21 changed files with 231 additions and 0 deletions

8
wsgi.py Normal file
View file

@ -0,0 +1,8 @@
from app import create_app
app, celery = create_app()
if __name__ == '__main__':
with app.app_context():
app.run(debug=True)