gatus/Makefile

14 lines
470 B
Makefile
Raw Normal View History

2021-01-26 02:56:02 +01:00
docker-build:
docker build -t twinproduction/gatus:latest .
2021-01-30 05:10:11 +01:00
docker-build-and-run:
docker build -t twinproduction/gatus:latest . && docker run -p 8080:8080 --name gatus twinproduction/gatus:latest
2021-01-26 02:56:02 +01:00
build-frontend:
npm --prefix web/app run build
run-frontend:
2021-02-01 07:37:56 +01:00
npm --prefix web/app run serve
test:
2021-02-21 00:11:29 +01:00
go test ./alerting/... ./client/... ./config/... ./controller/... ./core/... ./jsonpath/... ./pattern/... ./security/... ./storage/... ./util/... ./watchdog/... -cover