# -*- coding: utf-8 -*-

from distribution import app
from distribution.managers.backends import current_backend

current_backend.init()
app.run(debug=app.config['DEBUG'],
        host=app.config['HOST'],
        port=app.config['LISTEN_PORT'],
        threaded=app.config['THREADED_SERVER'])
