We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make dev
1 parent df8b7e3 commit aa82b43Copy full SHA for aa82b43
Makefile
@@ -2,8 +2,9 @@
2
# Build & Run
3
.PHONY: dev
4
dev:
5
+ make check-config
6
make -j 2 watch up
-
7
+
8
.PHONY: watch
9
watch:
10
@docker compose watch --no-up
@@ -113,11 +114,15 @@ win-setup:
113
114
poetry install --with setup --verbose
115
poetry run python src/backend/scripts/cli/main.py
116
-.PHONY: check-config
117
-check-config:
+.PHONY: check-config-install
118
+check-config-install:
119
120
poetry run python src/backend/scripts/config/check_config.py
121
122
+.PHONY: check-config
123
+check-config:
124
+ poetry run python src/backend/scripts/config/check_config.py
125
126
.PHONY: first-run
127
first-run:
128
make setup
0 commit comments