16 lines
213 B
Makefile
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
|