cut-out / main.py
JaiSurya's picture
base app
48bc30e
raw
history blame contribute delete
169 Bytes
from gevent.pywsgi import WSGIServer
from app import app
if __name__ == '__main__':
http_server = WSGIServer(('0.0.0.0', 7860), app)
http_server.serve_forever()