view web/templog.wsgi @ 395:f0ddb75bcf04

main.c : add a delay before turning on uart server : try and improve timeouts, get rid of lightblue, don't use https, use python logging module
author Matt Johnston <matt@ucc.asn.au>
date Sun, 15 Jul 2012 21:49:59 +0800
parents 5026780c2dc7
children 7f3fc0980df1
line wrap: on
line source

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()