Update dash. Add alerting webhook.

This commit is contained in:
mathan 2024-03-20 07:18:15 -07:00
parent bae23a62d0
commit d189912bcf
3 changed files with 52 additions and 12 deletions

22
metrics/Makefile Normal file
View file

@ -0,0 +1,22 @@
.PHONY: all build up update down
# ---------------------------- Docker ----------------------------
all:
go test -v ./...
.env:
@cp example.env .env
@echo "Please edit .env to suit your environment before proceeding"
@exit 1
build: .env
@docker compose build
up: .env
@docker compose up -d --build
update: up
down:
@docker compose down