.PHONY: test build run clean

test:
	go test ./...

build:
	mkdir -p dist
	CGO_ENABLED=0 go build -trimpath -ldflags="-s -w" -o dist/notify-gateway-linux-amd64 ./cmd/gateway

run:
	go run ./cmd/gateway -config ./data/config.json

clean:
	rm -rf dist
