1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

Working docker devserver

This commit is contained in:
Alexandre Iooss
2020-09-01 13:52:28 +02:00
parent 09853ce990
commit bf7b187048
2 changed files with 19 additions and 21 deletions

View File

@ -11,14 +11,22 @@ else
sed -i -e "s/REPLACEME/La Note Kfet \\\\ud83c\\\\udf7b/g" /code/note_kfet/fixtures/cas.json
fi
python manage.py compilemessages
python manage.py makemigrations
python manage.py migrate
# Set up Django project
python3 manage.py collectstatic --noinput
python3 manage.py compilemessages
python3 manage.py makemigrations
python3 manage.py migrate
nginx
if [ "$DJANGO_APP_STAGE" = "prod" ]; then
gunicorn -b 0.0.0.0:8000 --workers=2 --threads=4 --worker-class=gthread note_kfet.wsgi --access-logfile '-' --error-logfile '-';
if [ "$1" ]; then
# Command passed
echo "Running $@..."
$@
else
python manage.py runserver 0.0.0.0:8000;
# Launch server
if [ "$DJANGO_APP_STAGE" = "prod" ]; then
# FIXME: serve static files
uwsgi --http 0.0.0.0:8080 --master --module note_kfet.wsgi --processes 4
else
python3 manage.py runserver 0.0.0.0:8080;
fi
fi