1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 11:58:04 +00:00
twin-gatus/Makefile

14 lines
470 B
Makefile
Raw Normal View History

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