2022-12-01 13:48:10 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
2022-12-13 15:17:49 +00:00
|
|
|
python manage.py wait_for_db
|
2022-12-01 13:48:10 +00:00
|
|
|
python manage.py migrate
|
2023-02-21 06:01:43 +00:00
|
|
|
|
2023-11-18 20:18:05 +00:00
|
|
|
# Set default value for ENABLE_REGISTRATION
|
|
|
|
ENABLE_REGISTRATION=${ENABLE_REGISTRATION:-1}
|
|
|
|
|
|
|
|
# Check if ENABLE_REGISTRATION is not set to '0'
|
|
|
|
if [ "$ENABLE_REGISTRATION" != "0" ]; then
|
|
|
|
# Register instance
|
|
|
|
python manage.py register_instance
|
|
|
|
# Load the configuration variable
|
|
|
|
python manage.py configure_instance
|
|
|
|
fi
|
|
|
|
|
2023-11-13 10:27:19 +00:00
|
|
|
# Create the default bucket
|
2023-11-20 07:06:48 +00:00
|
|
|
python manage.py create_bucket
|
2023-02-21 06:01:43 +00:00
|
|
|
|
2023-11-07 12:35:38 +00:00
|
|
|
exec gunicorn -w $GUNICORN_WORKERS -k uvicorn.workers.UvicornWorker plane.asgi:application --bind 0.0.0.0:8000 --max-requests 1200 --max-requests-jitter 1000 --access-logfile -
|