gunicorn/examples/cherryapp.py
2010-04-22 19:21:49 +02:00

11 lines
233 B
Python

import cherrypy
cherrypy.config.update({'environment': 'embedded'})
class Root(object):
def index(self):
return 'Hello World!'
index.exposed = True
app = cherrypy.Application(Root(), script_name=None, config=None)