mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
9e9f531c99
* feat: add static analysis * chore: update Makefile add static analysis script * chore: add vscode extensions recommandations
15 lines
231 B
Makefile
15 lines
231 B
Makefile
|
|
|
|
dev:
|
|
docker compose -f docker-compose.dev.yml up --build
|
|
|
|
prod:
|
|
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
|