mirror of
https://github.com/kennethreitz/herald.git
synced 2026-06-05 23:00:19 +00:00
20 lines
224 B
Makefile
20 lines
224 B
Makefile
test:
|
|
go test
|
|
run:
|
|
go run cmd/version-scraper/main.go
|
|
|
|
bin-worker: compile
|
|
../../../../bin/version-scraper
|
|
|
|
cli:
|
|
go run cmd/herald-cli/main.go
|
|
|
|
web:
|
|
go run cmd/web/main.go
|
|
|
|
compile:
|
|
go install ./...
|
|
|
|
deps:
|
|
dep ensure
|