url_shortener/Makefile

9 lines
189 B
Makefile

run:
CONFIG_PATH=./config/local.yaml go run ./cmd/url-shortener/main.go
test:
go test ./internal/...
generate:
go generate ./...
functional_tests:
go test ./tests/url_shortener_test.go