def create_app(self): '''Create the wsgi application''' app_ = app.create_app(**{ 'FOO': ['bar', {}], 'SERVICE_TOKEN': 'secret_token', }) return app_
def create_app(self): '''Create the wsgi application''' app_ = app.create_app(**{ 'FOO': ['bar', {}], 'VIS_SERVICE_API_TOKEN': 'secret_token', }) return app_
def create_app(self): """ Create the wsgi application """ app_ = app.create_app() return app_
def create_app(self): '''Create the wsgi application''' app_ = app.create_app() return app_
# -*- coding: utf-8 -*- """ wsgi ~~~~ entrypoint wsgi script """ from werkzeug.serving import run_simple from werkzeug.wsgi import DispatcherMiddleware from vis_services import app application = app.create_app() if __name__ == "__main__": run_simple('0.0.0.0', 4000, application, use_reloader=False, use_debugger=True)