init
This commit is contained in:
commit
c97e3e8d4e
21 changed files with 231 additions and 0 deletions
8
wsgi.py
Normal file
8
wsgi.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue