mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
55 lines
1.8 KiB
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
if [[ -z "${ADMIN_USERNAME}" ]]; then echo "Missing ADMIN_USERNAME environment variable" >&2; exit 1; fi
|
|
if [[ -z "${ADMIN_PASSWORD}" ]]; then echo "Missing ADMIN_PASSWORD environment variable" >&2; exit 1; fi
|
|
if [[ -z "${ADMIN_EMAIL}" ]]; then echo "Missing ADMIN_EMAIL environment variable" >&2; exit 1; fi
|
|
if [[ -z "${PORT}" ]]; then echo "Missing PORT environment variable" >&2; exit 1; fi
|
|
if [[ -z "${WORKERS}" ]]; then echo "Missing WORKERS environment variable" >&2; exit 1; fi
|
|
if [[ -z "${CELERY_WORKERS}" ]]; then echo "Missing CELERY_WORKERS environment variable" >&2; exit 1; fi
|
|
|
|
set -o nounset
|
|
|
|
echo "Making staticfiles"
|
|
static_dir=staticfiles
|
|
mkdir -p client/dist/static
|
|
if [[ ! -d $static_dir ]] || [[ -z $(ls -A $static_dir) ]]; then
|
|
echo "Executing collectstatic"
|
|
python manage.py collectstatic --noinput;
|
|
fi
|
|
|
|
echo "Initializing database"
|
|
python manage.py wait_for_db
|
|
python manage.py migrate
|
|
python manage.py create_roles
|
|
|
|
echo "Creating admin"
|
|
if [[ -n "${ADMIN_USERNAME}" ]] && [[ -n "${ADMIN_PASSWORD}" ]] && [[ -n "${ADMIN_EMAIL}" ]]; then
|
|
python manage.py create_admin \
|
|
--username "${ADMIN_USERNAME}" \
|
|
--password "${ADMIN_PASSWORD}" \
|
|
--email "${ADMIN_EMAIL}" \
|
|
--noinput \
|
|
|| true
|
|
fi
|
|
|
|
echo "Starting django"
|
|
# gunicorn --bind="0.0.0.0:${PORT:-8000}" --workers="${WORKERS:-4}" app.wsgi --timeout 300
|
|
gunicorn --bind="0.0.0.0:${PORT:-8000}" --workers="${WORKERS:-1}" config.wsgi --timeout=300 &
|
|
gunicorn_pid="$!"
|
|
|
|
celery --app=config worker --loglevel=INFO --concurrency="${CELERY_WORKERS:-1}" &
|
|
celery_pid="$!"
|
|
|
|
while :; do
|
|
if [[ ! -e "/proc/${celery_pid}" ]]; then
|
|
echo "celery crashed" >&2
|
|
exit 1
|
|
elif [[ ! -e "/proc/${gunicorn_pid}" ]]; then
|
|
echo "gunicorn crashed" >&2
|
|
exit 2
|
|
else
|
|
sleep 10
|
|
fi
|
|
done
|