mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
37 lines
804 B
Python
37 lines
804 B
Python
import eventlet
|
|
eventlet.monkey_patch()
|
|
from app import create_app, db, socketio
|
|
from app.models import *
|
|
from flask_migrate import Migrate
|
|
import os
|
|
|
|
|
|
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
|
|
migrate = Migrate(app, db)
|
|
|
|
|
|
@app.shell_context_processor
|
|
def make_shell_context():
|
|
return {'db': db,
|
|
'Corpus': Corpus,
|
|
'Job': Job,
|
|
'User': User,
|
|
'CorpusFile': CorpusFile}
|
|
|
|
|
|
@app.cli.command()
|
|
def test():
|
|
"""Run the unit tests."""
|
|
import unittest
|
|
tests = unittest.TestLoader().discover('tests')
|
|
unittest.TextTestRunner(verbosity=2).run(tests)
|
|
|
|
|
|
@app.cli.command('insert-initial-database-entries')
|
|
def insert_initial_database_entries():
|
|
Role.insert_roles()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
socketio.run(app, host='0.0.0.0')
|