chore: add make stop target to terminate development servers
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
aff9c7120b
commit
c2657e0adb
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
|
@ -32,6 +32,14 @@ server: check_go_env buildjs ##@Development Start the backend in development mod
|
||||||
@ND_ENABLEINSIGHTSCOLLECTOR="false" go tool reflex -d none -c reflex.conf
|
@ND_ENABLEINSIGHTSCOLLECTOR="false" go tool reflex -d none -c reflex.conf
|
||||||
.PHONY: server
|
.PHONY: server
|
||||||
|
|
||||||
|
stop: ##@Development Stop development servers (UI and backend)
|
||||||
|
@echo "Stopping development servers..."
|
||||||
|
@-pkill -f "vite"
|
||||||
|
@-pkill -f "go tool reflex.*reflex.conf"
|
||||||
|
@-pkill -f "go run.*netgo"
|
||||||
|
@echo "Development servers stopped."
|
||||||
|
.PHONY: stop
|
||||||
|
|
||||||
watch: ##@Development Start Go tests in watch mode (re-run when code changes)
|
watch: ##@Development Start Go tests in watch mode (re-run when code changes)
|
||||||
go tool ginkgo watch -tags=netgo -notify ./...
|
go tool ginkgo watch -tags=netgo -notify ./...
|
||||||
.PHONY: watch
|
.PHONY: watch
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue