mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
Load .env file manually because socketio.run does not load it for you.
This commit is contained in:
parent
a5f1336847
commit
a44407255b
@ -1,8 +1,13 @@
|
||||
from app import create_app, db, socketio
|
||||
from app.models import Corpus, User, Role, Permission, Job
|
||||
from dotenv import load_dotenv
|
||||
from flask_migrate import Migrate
|
||||
import os
|
||||
|
||||
|
||||
load_dotenv()
|
||||
|
||||
|
||||
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
|
||||
migrate = Migrate(app, db)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user