nopaque/nopaque.py

36 lines
802 B
Python
Raw Normal View History

2019-08-26 12:21:06 +00:00
import eventlet
2020-03-27 11:06:11 +00:00
eventlet.monkey_patch() # noqa: E261
2019-08-21 12:41:38 +00:00
from app import create_app, db, socketio
2020-01-20 08:08:42 +00:00
from app.models import Corpus, Job, Role, User
from flask_migrate import Migrate
2019-07-03 13:40:45 +00:00
import os
2019-07-03 08:31:23 +00:00
2019-07-03 13:40:45 +00:00
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,
2020-01-20 08:08:42 +00:00
'User': User}
2019-07-08 08:52:36 +00:00
@app.cli.command()
def test():
"""Run the unit tests."""
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
2019-09-06 09:38:35 +00:00
@app.cli.command('insert-initial-database-entries')
def insert_initial_database_entries():
2019-09-05 14:39:50 +00:00
Role.insert_roles()
if __name__ == '__main__':
socketio.run(app, host='0.0.0.0')