2021-09-05 17:10:14 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# startup script inside the container for tubearchivist
|
|
|
|
|
|
|
|
counter=0
|
|
|
|
until curl "$ES_URL" -fs; do
|
|
|
|
echo "waiting for elastic search to start"
|
|
|
|
counter=$((counter+1))
|
|
|
|
if [[ $counter -eq 12 ]]; then
|
2021-10-25 06:23:54 +00:00
|
|
|
# fail after 2 min
|
2021-09-05 17:10:14 +00:00
|
|
|
echo "failed to connect to elastic search, exiting..."
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-10-25 06:23:54 +00:00
|
|
|
sleep 10
|
2021-09-05 17:10:14 +00:00
|
|
|
done
|
|
|
|
|
2021-10-21 12:33:27 +00:00
|
|
|
python manage.py makemigrations
|
2021-09-05 17:10:14 +00:00
|
|
|
python manage.py migrate
|
2021-10-21 12:33:27 +00:00
|
|
|
python manage.py createsuperuser --noinput
|
2021-09-16 14:59:36 +00:00
|
|
|
python manage.py collectstatic --noinput -c
|
2021-09-05 17:10:14 +00:00
|
|
|
nginx &
|
2021-09-13 15:18:03 +00:00
|
|
|
celery -A home.tasks worker --loglevel=INFO &
|
2021-09-05 17:10:14 +00:00
|
|
|
uwsgi --ini uwsgi.ini
|