feat: export state corp package from backup endpoint
Some checks failed
CI/CD Pipeline / Quality Gate (push) Successful in 33s
CI/CD Pipeline / Build and Push Images (push) Successful in 10s
CI/CD Pipeline / Internal Notify (push) Successful in 0s
CI/CD Pipeline / Deploy Dev in Dokploy (push) Failing after 9s

This commit is contained in:
2026-05-12 15:12:56 +02:00
parent 15360a3c8e
commit 75c1d4cf1a
11 changed files with 925 additions and 301 deletions

View File

@@ -91,7 +91,7 @@ ENV PATH="/app/.venv/bin:${PATH}" \
CELERY_RESULT_BACKEND=redis://redis:6379/0 \
PORT=8000 \
GUNICORN_WORKERS=4 \
GUNICORN_TIMEOUT=60 \
GUNICORN_TIMEOUT=300 \
CELERY_LOG_LEVEL=INFO \
CELERY_WORKER_CONCURRENCY=2 \
CHECKO_API_KEY= \

View File

@@ -22,6 +22,6 @@ python src/manage.py migrate --noinput
exec gunicorn core.wsgi:application \
--bind "0.0.0.0:${PORT:-8000}" \
--workers "${GUNICORN_WORKERS:-3}" \
--timeout "${GUNICORN_TIMEOUT:-60}" \
--timeout "${GUNICORN_TIMEOUT:-300}" \
--access-logfile "-" \
--error-logfile "-"