Python
30 Jun 2008
 
 
 
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
import cherrypy
from flup.server.fcgi import WSGIServer
from frontend import app
cherrypy.config.update({'engine.autoreload_on':False})
WSGIServer(app).run()