mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
20 lines
435 B
Makefile
20 lines
435 B
Makefile
|
BREW_PREFIX ?= $(shell brew --prefix)
|
||
|
DATABASE_URL ?= "postgres://$(USER)@localhost/apollo_test?sslmode=disable"
|
||
|
|
||
|
test:
|
||
|
@DATABASE_URL=$(DATABASE_URL) go test -race -v -timeout 1s ./...
|
||
|
|
||
|
test-setup: $(BREW_PREFIX)/bin/migrate
|
||
|
migrate -path migrations/ -database $(DATABASE_URL) up
|
||
|
|
||
|
build:
|
||
|
@go build ./cmd/apollo
|
||
|
|
||
|
lint:
|
||
|
@golangci-lint run
|
||
|
|
||
|
$(BREW_PREFIX)/bin/migrate:
|
||
|
@brew install golang-migrate
|
||
|
|
||
|
.PHONY: all build deps lint test
|