Switch back to socketio server while development

This commit is contained in:
Patrick Jentsch 2020-04-27 09:34:12 +02:00
parent 98fecacb11
commit 3a05a4d2f4
4 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -23,9 +23,6 @@ MAIL_USE_TLS=
MAIL_USERNAME=
MAIL_PASSWORD=
### Gunicorn ###
GUNICORN_WORKERS=
### nopaque ###
NOPAQUE_ADMIN=
NOPAQUE_MAIL_SENDER=

View File

@ -1,6 +1,6 @@
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')

View File

@ -9,7 +9,6 @@ Flask-SocketIO
Flask-SQLAlchemy
Flask-Table
Flask-WTF
gunicorn
jsonpatch
psycopg2
redis