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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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