You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isso/isso/run.py

15 lines
317 B

# -*- encoding: utf-8 -*-
from __future__ import unicode_literals
import os
from isso import make_app
from isso import dist, config
application = make_app(
config.load(
os.path.join(dist.location, dist.project_name, "defaults.ini"),
os.environ.get('ISSO_SETTINGS')),
multiprocessing=True)