Added uwsgi instead of gevent

This commit is contained in:
Roger Gonzalez 2023-05-14 11:37:05 -03:00
parent 1c3796ea75
commit 92eccd8b83
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 1 additions and 7 deletions

View File

@ -11,7 +11,6 @@ distlib==0.3.6
filelock==3.12.0 filelock==3.12.0
Flask==2.3.2 Flask==2.3.2
frozenlist==1.3.3 frozenlist==1.3.3
gevent==22.10.2
greenlet==2.0.2 greenlet==2.0.2
html5lib==1.1 html5lib==1.1
identify==2.5.24 identify==2.5.24
@ -30,6 +29,7 @@ requests==2.30.0
six==1.16.0 six==1.16.0
tqdm==4.65.0 tqdm==4.65.0
urllib3==2.0.2 urllib3==2.0.2
uWSGI==2.0.21
virtualenv==20.23.0 virtualenv==20.23.0
webencodings==0.5.1 webencodings==0.5.1
Werkzeug==2.3.4 Werkzeug==2.3.4

View File

@ -1,6 +0,0 @@
from gevent.pywsgi import WSGIServer
from app import app
http_server = WSGIServer(("0.0.0.0", 5000), app)
http_server.serve_forever()