blob: 604cf19158a188c72945066536013b303840c0bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/usr/bin/python
__requires__="TurboGears"
import pkg_resources
from turbogears import config, update_config, start_server
import cherrypy
cherrypy.lowercase_api = True
from os.path import *
import sys
# first look on the command line for a desired config file,
# if it's not on the command line, then
# look for setup.py in this directory. If it's not there, this script is
# probably installed
if len(sys.argv) > 1:
update_config(configfile=sys.argv[1],
modulename="funcweb.config")
elif exists(join(dirname(__file__), "setup.py")):
update_config(configfile="dev.cfg",modulename="funcweb.config")
else:
update_config(configfile="prod.cfg",modulename="funcweb.config")
config.update(dict(package="funcweb"))
from funcweb.controllers import Root
start_server(Root())
|