And get the shim working to my taste

This commit is contained in:
Reid 'arrdem' McKenzie 2023-06-02 23:24:03 -06:00
parent 4840a15c00
commit aa65b03d4a

View file

@ -5,20 +5,22 @@ import cherrypy
def shim(app):
# Mount the application
cherrypy.tree.graft(app, "/")
# Unsubscribe the default server
cherrypy.server.unsubscribe()
# Instantiate a new server object
server = cherrypy._cpserver.Server()
def _run(host="0.0.0.0", port=8080, pool_size=16):
# Configure the server object
server.socket_host = host
server.socket_port = port
server.thread_pool = pool_size
def _run(host="0.0.0.0", port=8080, pool_size=16, environment="production"):
cherrypy.config.update(
{
"environment": environment,
"server.socket_host": host,
"server.socket_port": port,
"server.thread_pool": pool_size,
"engine.autoreload.on": False,
"log.screen": True,
}
)
server.subscribe()
cherrypy.engine.start()
cherrypy.engine.block()