view web/templog.uwsgi @ 586:87c20b8c5472 default master

port to python3
author Matt Johnston <matt@ucc.asn.au>
date Mon, 09 Sep 2019 22:24:10 +0800
parents 3e6f82347eab
children
line wrap: on
line source

# see templog-uwsgi.ini for arguments

from gevent import monkey; monkey.patch_all()

import os
import sys
import trace
# Change working directory so relative paths (and template lookup) work again
thisdir = os.path.dirname(__file__)
if not thisdir:
    thisdir="."
os.chdir(thisdir)
os.environ['LD_LIBRARY_PATH'] = '/home/matt/templog/web'

# for some reason local imports don't work...
sys.path.append(thisdir)

import bottle
import templog
application = bottle.default_app()