py-phias/passenger_wsgi.py
2016-03-12 19:54:24 +03:00

17 lines
288 B
Python

# -*- coding: utf-8 -*-
from aore import phias
# Load config
try:
from config import *
except ImportError:
assert "No config"
# Define main app
application = phias.App()
# Run bottle WSGI server if no external
if __name__ == '__main__':
application.start('0.0.0.0', 8087)