added example usage of wsgi file

This commit is contained in:
advaithm 2021-03-05 11:46:34 +05:30 committed by Hector Martin
parent 262c6b048a
commit eeb869e553
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
from app import app
if __name__ == '__main__':
app.run()
app.run()
# example usage gunicorn --bind 0.0.0.0:5000 wsgi:app