Docker compose refactor

Added shell interpolation for environment variables
This commit is contained in:
Sonny Bakker 2025-05-05 15:02:03 +02:00
parent e96c6f3528
commit 10affeb32f
16 changed files with 298 additions and 287 deletions

View file

@ -7,7 +7,7 @@ requires-python = ">=3.11"
dependencies = [
"django~=4.2",
"celery~=5.4",
"psycopg",
"psycopg[binary]",
"django-axes",
"django-celery-beat~=2.7.0",
"django-rest-framework",
@ -36,7 +36,7 @@ production = ["gunicorn~=23.0"]
sentry = ["sentry-sdk~=2.0"]
[tool.uv]
environments = ["sys_platform == "linux""]
environments = ["sys_platform == 'linux'"]
default-groups = ["test-tools"]
[tool.ruff]
@ -68,7 +68,7 @@ django = ["django"]
[tool.coverage.run]
source = ["./src/newsreader/"]
omit = [
"**/tests/**"
"**/tests/**",
"**/migrations/**",
"**/conf/**",
"**/apps.py",
@ -77,5 +77,5 @@ omit = [
"**/urls.py",
"**/wsgi.py",
"**/celery.py",
"**/__init__.py
"**/__init__.py"
]