17 lines
254 B
Makefile
17 lines
254 B
Makefile
.PHONY: build test migrate-up migrate-down run
|
|
|
|
build:
|
|
go build ./...
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
run:
|
|
go run ./cmd/reanimator-api
|
|
|
|
migrate-up:
|
|
go run ./cmd/reanimator-migrate --direction up
|
|
|
|
migrate-down:
|
|
go run ./cmd/reanimator-migrate --direction down
|