~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Robey Pointer
  • Date: 2006-12-18 07:49:19 UTC
  • Revision ID: robey@lag.net-20061218074919-epu2so3jhu6b7zsm
don't bother to rebuild the cache when it's full

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/Library/Frameworks/Python.framework/Versions/2.4/Resources/Python.app/Contents/MacOS/Python
 
1
#!/usr/bin/env python2.4
2
2
import pkg_resources
3
3
pkg_resources.require("TurboGears")
4
4
 
23
23
    turbogears.update_config(configfile="prod.cfg",
24
24
        modulename="loggerhead.config")
25
25
 
26
 
# robey FIXME
27
 
sys.path.insert(0, '/Users/robey/code/bzr/bzr.dev')
28
 
 
29
26
from loggerhead.controllers import Root
30
27
 
31
28
turbogears.start_server(Root())