Skip to content
Snippets Groups Projects
Commit 3a05a4d2 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Switch back to socketio server while development

parent 98fecacb
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ GUNICORN_WORKERS="${GUNICORN_WORKERS:-1}"
source venv/bin/activate
if [ $# -eq 0 ]; then
flask deploy
gunicorn --access-logfile - --bind :5000 --error-logfile - --workers "${GUNICORN_WORKERS}" --worker-class eventlet nopaque:app
python nopaque.py
elif [ $1 == "flask" ]; then
flask ${@:2}
else
......
......@@ -23,9 +23,6 @@ MAIL_USE_TLS=
MAIL_USERNAME=
MAIL_PASSWORD=
### Gunicorn ###
GUNICORN_WORKERS=
### nopaque ###
NOPAQUE_ADMIN=
NOPAQUE_MAIL_SENDER=
......
import eventlet
eventlet.monkey_patch() # noqa
from app import create_app, db
from app import create_app, db, socketio
from app.models import Corpus, Job, Role, User
from flask_migrate import Migrate, upgrade
import os
......@@ -34,3 +34,7 @@ def test():
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
if __name__ == '__main__':
socketio.run(app, host='0.0.0.0')
......@@ -9,7 +9,6 @@ Flask-SocketIO
Flask-SQLAlchemy
Flask-Table
Flask-WTF
gunicorn
jsonpatch
psycopg2
redis
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment