Files
core/Makefile

20 lines
305 B
Makefile

.PHONY: build test migrate-up migrate-down run db-reset
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
db-reset:
go run ./cmd/reanimator-reset