letterbomb/wsgi.py

7 lines
117 B
Python
Raw Normal View History

2021-03-05 07:14:21 +01:00
from app import app
if __name__ == '__main__':
2021-03-05 07:16:34 +01:00
app.run()
# example usage gunicorn --bind 0.0.0.0:5000 wsgi:app