Add uv project config and switch CI/Docker installs to uv

Agent-Logs-Url: https://github.com/dsaub/proyecto-final/sessions/7a547c09-9817-47a6-979e-c19cbcaa4c08

Co-authored-by: dsaub <54474838+dsaub@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-05-08 07:51:40 +00:00
committed by GitHub
parent 72def373e3
commit 580d60ec4f
5 changed files with 37 additions and 12 deletions
+3 -3
View File
@@ -5,10 +5,10 @@ set -eu
echo "Sleeping due to mysql..."
sleep 10
echo "Running DB migrations..."
python manage.py migrate
uv run python manage.py migrate
echo "Collecting STATIC..."
python manage.py collectstatic --noinput --clear
uv run python manage.py collectstatic --noinput --clear
echo "Running server!"
gunicorn --bind 0.0.0.0:8000 proyecto.wsgi:application --forwarded-allow-ips="*"
uv run gunicorn --bind 0.0.0.0:8000 proyecto.wsgi:application --forwarded-allow-ips="*"