from app import create_app, init_db app = create_app('development') with app.app_context(): init_db() print('Datenbank initialisiert')