mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Apply monkey patch to all modules supported by eventlet.
This commit is contained in:
parent
b580f9cb9f
commit
82f81c62ac
17
opaque.py
17
opaque.py
@ -1,14 +1,7 @@
|
||||
import eventlet
|
||||
eventlet.monkey_patch(os=True,
|
||||
select=True,
|
||||
socket=True,
|
||||
thread=False,
|
||||
time=True,
|
||||
psycopg=True)
|
||||
|
||||
eventlet.monkey_patch()
|
||||
from dotenv import load_dotenv
|
||||
load_dotenv()
|
||||
|
||||
from app import create_app, db, socketio
|
||||
from app.models import Corpus, User, Role, Permission, Job
|
||||
from flask_migrate import Migrate
|
||||
@ -19,10 +12,6 @@ app = create_app(os.getenv('FLASK_CONFIG') or 'default')
|
||||
migrate = Migrate(app, db)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
socketio.run(app)
|
||||
|
||||
|
||||
@app.shell_context_processor
|
||||
def make_shell_context():
|
||||
return dict(db=db,
|
||||
@ -39,3 +28,7 @@ def test():
|
||||
import unittest
|
||||
tests = unittest.TestLoader().discover('tests')
|
||||
unittest.TextTestRunner(verbosity=2).run(tests)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
socketio.run(app)
|
||||
|
Loading…
Reference in New Issue
Block a user