web.py 202B

12345678910
  1. # coding=utf-8
  2. # Runner for uwsgi
  3. import os
  4. import pyramid.paster
  5. config_uri = os.environ['TRACIM_CONF_PATH']
  6. pyramid.paster.setup_logging(config_uri)
  7. application = pyramid.paster.get_app(config_uri)