diff --git a/privatim.wsgi b/privatim.wsgi new file mode 100644 index 0000000..6ca20f8 --- /dev/null +++ b/privatim.wsgi @@ -0,0 +1,9 @@ +import os +from pyramid.paster import setup_logging +from pyramid.paster import get_app + +dir = os.path.dirname(__file__) +ini_path = os.path.join(dir, 'production.ini') + +setup_logging(ini_path) +application = get_app(ini_path, 'main') \ No newline at end of file