release 1.2

This commit is contained in:
2026-03-03 22:43:26 +03:00
parent 651631b3c7
commit 40dec27d41
27 changed files with 494 additions and 496 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
set -e # Выход при ошибке
cd /app/src
echo "Running database initialization..."
uv run init_db.py
echo "Starting Gunicorn..."
exec /app/.venv/bin/gunicorn \
-w 1 \
-k uvicorn.workers.UvicornWorker \
"init:app" \
-b "0.0.0.0:80" \
--log-config="/app/src/config/logger.ini"