fix(dev): Add run-binary target in Makefile

This commit is contained in:
TwiN
2025-03-03 21:40:46 -05:00
committed by GitHub
parent bb62a400f1
commit 4cd35ef51d

View File

@ -6,6 +6,10 @@ install:
.PHONY: run
run:
ENVIRONMENT=dev GATUS_CONFIG_PATH=./config.yaml go run main.go
.PHONY: run-binary
run-binary:
ENVIRONMENT=dev GATUS_CONFIG_PATH=./config.yaml ./$(BINARY)
.PHONY: clean