diff --git a/wsgi.py b/wsgi.py index 3c1465a..86a7176 100644 --- a/wsgi.py +++ b/wsgi.py @@ -1,4 +1,6 @@ from app import app if __name__ == '__main__': - app.run() \ No newline at end of file + app.run() + +# example usage gunicorn --bind 0.0.0.0:5000 wsgi:app