mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
14 lines
470 B
Makefile
14 lines
470 B
Makefile
docker-build:
|
|
docker build -t twinproduction/gatus:latest .
|
|
|
|
docker-build-and-run:
|
|
docker build -t twinproduction/gatus:latest . && docker run -p 8080:8080 --name gatus twinproduction/gatus:latest
|
|
|
|
build-frontend:
|
|
npm --prefix web/app run build
|
|
|
|
run-frontend:
|
|
npm --prefix web/app run serve
|
|
|
|
test:
|
|
go test ./alerting/... ./client/... ./config/... ./controller/... ./core/... ./jsonpath/... ./pattern/... ./security/... ./storage/... ./util/... ./watchdog/... -cover
|