url_shortener/Makefile

9 lines
189 B
Makefile
Raw Permalink Normal View History

2023-12-08 12:59:55 +02:00
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