Skip to content

Commit

Permalink
Makefile changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tianjing-li committed Dec 30, 2024
1 parent 131a1a2 commit 50d54fa
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# Build & Run
.PHONY: dev
dev:
make check-config
make -j 2 watch up

.PHONY: watch
watch:
@docker compose watch --no-up
Expand Down Expand Up @@ -105,11 +106,15 @@ win-setup:
poetry install --with setup --verbose
poetry run python src/backend/scripts/cli/main.py

.PHONY: check-config
check-config:
.PHONY: check-config-install
check-config-install:
poetry install --with setup --verbose
poetry run python src/backend/scripts/config/check_config.py

.PHONY: check-config
check-config:
poetry run python src/backend/scripts/config/check_config.py

.PHONY: first-run
first-run:
make setup
Expand Down

0 comments on commit 50d54fa

Please sign in to comment.