Use uv to manage requirements

This commit is contained in:
Sonny Bakker 2024-08-30 21:05:55 +02:00
parent e95c2a440e
commit a041d5f7fa
15 changed files with 998 additions and 1334 deletions

View file

@ -74,7 +74,7 @@ services:
environment:
<<: *django-env
command: |
celery --app newsreader
/app/.venv/bin/celery --app newsreader
--workdir /app/src/
worker --loglevel INFO
--concurrency 2
@ -105,7 +105,7 @@ services:
<<: *django-env
entrypoint: /app/bin/docker-entrypoint.sh
command: |
gunicorn --bind 0.0.0.0:8000
/app/.venv/bin/gunicorn --bind 0.0.0.0:8000
--workers 3
--chdir /app/src/
newsreader.wsgi:application