Ejemplo n.º 1
0
    def create_app(self):
        '''Create the wsgi application'''
        app_ = app.create_app(**{
            'FOO': ['bar', {}],
            'SERVICE_TOKEN': 'secret_token',
        })

        return app_
Ejemplo n.º 2
0
    def create_app(self):
        '''Create the wsgi application'''
        app_ = app.create_app(**{
            'FOO': ['bar', {}],
            'VIS_SERVICE_API_TOKEN': 'secret_token',
               })            

        return app_
Ejemplo n.º 3
0
 def create_app(self):
     """
     Create the wsgi application
     """
     app_ = app.create_app()
     return app_
Ejemplo n.º 4
0
 def create_app(self):
     '''Create the wsgi application'''
     app_ = app.create_app()
     return app_
Ejemplo n.º 5
0
 def create_app(self):
     '''Create the wsgi application'''
     app_ = app.create_app()
     return app_
Ejemplo n.º 6
0
# -*- 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)
Ejemplo n.º 7
0
# -*- 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)
Ejemplo n.º 8
0
 def create_app(self):
     """
     Create the wsgi application
     """
     app_ = app.create_app()
     return app_