gatus/Makefile

42 lines
571 B
Makefile
Raw Permalink Normal View History

2021-08-24 02:40:13 +02:00
BINARY=gatus
.PHONY: install
2021-08-24 02:40:13 +02:00
install:
go build -v -o $(BINARY) .
2021-08-24 02:40:13 +02:00
.PHONY: run
2021-08-24 02:40:13 +02:00
run:
GATUS_CONFIG_PATH=./config.yaml ./$(BINARY)
2021-08-24 02:40:13 +02:00
.PHONY: clean
2021-08-24 02:40:13 +02:00
clean:
rm $(BINARY)
.PHONY: test
2021-08-24 02:40:13 +02:00
test:
go test ./... -cover
2021-08-24 02:40:13 +02:00
##########
# Docker #
##########
2021-01-26 02:56:02 +01:00
docker-build:
docker build -t twinproduction/gatus:latest .
2021-08-24 02:40:13 +02:00
docker-run:
docker run -p 8080:8080 --name gatus twinproduction/gatus:latest
docker-build-and-run: docker-build docker-run
2021-01-30 05:10:11 +01:00
2021-08-24 02:40:13 +02:00
#############
# Front end #
#############
frontend-build:
2021-01-26 02:56:02 +01:00
npm --prefix web/app run build
2021-08-24 02:40:13 +02:00
frontend-run:
2021-02-01 07:37:56 +01:00
npm --prefix web/app run serve