librapi/Makefile
2025-11-24 17:12:18 +01:00

16 lines
213 B
Makefile

-include .deploy/Makefile
VERSION := 0.1.0
test:
go test ./... -race
build: lint
mkdir -p builds
go build -o builds/librapi main.go
lint:
golangci-lint run --fix
run: lint build
docker compose up --build