This commit is contained in:
ITQ
2025-11-22 13:55:04 +03:00
parent c54aeee0ce
commit caf2dda5e2
3 changed files with 62 additions and 17 deletions
+3 -3
View File
@@ -10,13 +10,13 @@ default:
[group("Docker")]
[doc("Rebuild all images")]
build:
docker compose --profile migrations --profile tests --profile observability build
docker compose --profile migrations --profile observability --profile backend build
[no-cd]
[group("Docker")]
[doc("Compose start")]
up: build
docker compose --profile migrations --profile observabilit --profile backend up -d --remove-orphans --quiet-pull --force-recreate --build
docker compose --profile migrations --profile observability --profile backend up -d --remove-orphans --quiet-pull --force-recreate --build
# =========
# > Tests
@@ -37,7 +37,7 @@ tests:
[doc("Linters run")]
lint:
ruff check
mypy
mypy || exit 0
codespell src tests
bandit -r src || exit 0