Mercurial > templog
diff web/templog.wsgi @ 85:3cd1ca6d0489
- Fix HTTPError
- Add wsgi script
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 11 Jul 2012 23:42:24 +0800 |
parents | |
children | 7f3fc0980df1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/templog.wsgi Wed Jul 11 23:42:24 2012 +0800 @@ -0,0 +1,12 @@ +import os +import sys +# Change working directory so relative paths (and template lookup) work again +thisdir = os.path.dirname(__file__) +os.chdir(thisdir) + +# for some reason local imports don't work... +sys.path.append(thisdir) + +import bottle +import templog +application = bottle.default_app()