예제 #1
0
def before_all(*args):
    app = create_app({
        'session_key': 'secret_session',
        'jwt_key': 'super_sauce'
    })
    clear_db(app)
    basic_fixture(app)
    app.config['TESTING'] = True
    world.app = app.test_client()
예제 #2
0
from av_dashboard import create_app
app = create_app()
예제 #3
0
from av_dashboard import create_app

if __name__ == "__main__":
    create_app().run()