mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-01 21:40:32 +00:00
5 lines
130 B
Python
5 lines
130 B
Python
from gevent.pywsgi import WSGIServer
|
|
from server import app
|
|
|
|
http_server = WSGIServer(('', 5555), app)
|
|
http_server.serve_forever() |