mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-28 05:13:57 +03:00
1e00f6929f
fixed multi stage
17 lines
296 B
Makefile
17 lines
296 B
Makefile
test:
|
|
pytest -s backend/tests
|
|
|
|
dev:
|
|
docker compose -f docker-compose.dev.yml up --build
|
|
|
|
prod:
|
|
docker compose build backend-core
|
|
docker compose -f docker-compose.yml up --build
|
|
|
|
test-type:
|
|
@if command -v python3 &>/dev/null; then \
|
|
python3 -m pyright; \
|
|
else \
|
|
python -m pyright; \
|
|
fi
|