Exemplo n.º 1
0
def app(request):
    db_fd, temp_db_location = tempfile.mkstemp()
    config = {'DATABASE': temp_db_location, 'TESTING': True, 'DB_FD': db_fd}

    app = create_app(config=config)

    with app.app_context():
        init_db()
        yield app
Exemplo n.º 2
0
def app(request):
    db_fd.temp_db_location = tempfile.mkstemp()
    config = {
            'DATABASE':temp_db_location,
            'TESTING':True,
            'DB_FD':db_fd
            }
    app = create_app(config=config)

    with app.app_context():
        init_db()
        yield app
Exemplo n.º 3
0
def app():
    db_fd, db_path = tempfile.mkstemp()
    config = {
        'DATABASE': db_path,
        'TESTING': True,
    }
    app = create_app(config=config)

    with app.app_context():
        init_db()
        yield app

    os.close(db_fd)
    os.unlink(db_path)
Exemplo n.º 4
0
def app():
    db_fd, db_path = tempfile.mkstemp()
    config = {
        'DATABASE': db_path,
        'TESTING': True,
    }
    app = create_app(config=config)

    with app.app_context():
        init_db()
        yield app

    os.close(db_fd)
    os.unlink(db_path)
Exemplo n.º 5
0
from flaskr.factory import create_app
#from flaskr.blueprints.flaskr import init_db

app=create_app()
#init_db()
with app.app_context():
	
	if __name__=="__main__":
		app.run(host='0.0.0.0', port=8080)
	
		#app.run()
	
def create_app(settings_override=None):
    app = factory.create_app(__name__, settings_override)
    init_app(app)
    return app
Exemplo n.º 7
0
from flaskr import factory

app = factory.create_app(__name__)
Exemplo n.º 8
0
from flaskr.factory import create_app
#from flaskr.blueprints.flaskr import init_db

app = create_app()
#init_db()
with app.app_context():

    if __name__ == "__main__":
        app.run(host='0.0.0.0', port=8080)

        #app.run()
Exemplo n.º 9
0
def create_app(settings_override=None):
    app = factory.create_app(__name__, settings_override)
    init_app(app)
    return app