Skip to content

Commit aa82b43

Browse files
authored
chore: Check config when running make dev (#888)
Makefile changes
1 parent df8b7e3 commit aa82b43

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
# Build & Run
33
.PHONY: dev
44
dev:
5+
make check-config
56
make -j 2 watch up
6-
7+
78
.PHONY: watch
89
watch:
910
@docker compose watch --no-up
@@ -113,11 +114,15 @@ win-setup:
113114
poetry install --with setup --verbose
114115
poetry run python src/backend/scripts/cli/main.py
115116

116-
.PHONY: check-config
117-
check-config:
117+
.PHONY: check-config-install
118+
check-config-install:
118119
poetry install --with setup --verbose
119120
poetry run python src/backend/scripts/config/check_config.py
120121

122+
.PHONY: check-config
123+
check-config:
124+
poetry run python src/backend/scripts/config/check_config.py
125+
121126
.PHONY: first-run
122127
first-run:
123128
make setup

0 commit comments

Comments
 (0)