add wsgi.py for use with gunicorn

This commit is contained in:
Lynne Megido 2019-09-10 15:08:48 +10:00
parent 313dbc37fd
commit bd5733ef11

4
wsgi.py Normal file
View File

@ -0,0 +1,4 @@
from webui import app
if __name__ == "__main__":
app.run()