summaryrefslogtreecommitdiff
path: root/Makefile
blob: b8e638fa76bf4d20ed5c72c4fab8c4d847a72597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: build test vet run mock migrate

build:
	CGO_ENABLED=0 go build -buildvcs=false -trimpath -o aigw ./cmd/aigw

test:
	go test ./...

vet:
	go vet ./...

run:
	go run ./cmd/aigw -config config.json

mock:
	go run ./cmd/mockupstream

migrate:
	go run ./cmd/migrate