From 778e3239a452a108a9c540a251cde2406232f081 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 10 Feb 2020 12:03:40 +0100 Subject: [PATCH] Less complexity for download_data_openlibrary --- entrypoint.sh | 28 +++++++++++++++------------- requirements.txt | 2 +- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index aa2d908..96fcc64 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,19 +11,21 @@ sleep 2 python manage.py migrate python manage.py collectstatic --no-input +python manage.py runserver 0.0.0.0:8000 + # harakiri parameter respawns processes taking more than 20 seconds # max-requests parameter respawns processes after serving 5000 requests # vacuum parameter cleans up when stopped -uwsgi --chdir="$(pwd)" \ - --module=med.wsgi:application \ - --env DJANGO_SETTINGS_MODULE=med.settings \ - --master \ - --pidfile="$(pwd)/uwsgi.pid" \ - --socket="$(pwd)/uwsgi.sock" \ - --processes=5 \ - --chmod-socket=600 \ - --harakiri=20 \ - --max-requests=5000 \ - --vacuum \ - --daemonize="$(pwd)/uwsgi.log" \ - --protocol=fastcgi \ No newline at end of file +#uwsgi --chdir="$(pwd)" \ +# --module=med.wsgi:application \ +# --env DJANGO_SETTINGS_MODULE=med.settings \ +# --master \ +# --pidfile="$(pwd)/uwsgi.pid" \ +# --socket="$(pwd)/uwsgi.sock" \ +# --processes=5 \ +# --chmod-socket=600 \ +# --harakiri=20 \ +# --max-requests=5000 \ +# --vacuum \ +# --daemonize="$(pwd)/uwsgi.log" \ +# --protocol=fastcgi \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 2e68d39..f02f58e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,6 +9,6 @@ python-stdnum==1.10 djangorestframework==3.9.2 pyyaml==3.13 coreapi==2.3.3 -psycopg2==2.7.7 +psycopg2 uwsgi==2.0.18 mysqlclient==1.4.3