17 lines
285 B
Makefile
17 lines
285 B
Makefile
build:
|
|
go build .
|
|
|
|
html:
|
|
go tool qtc -dir templates
|
|
|
|
docs:
|
|
go tool godoc -http=localhost:6060 -index -index_files godoc.idx
|
|
|
|
build_docs:
|
|
go tool godoc -v -http=localhost:6060 -index -index_files godoc.idx -write_index
|
|
|
|
test:
|
|
go test
|
|
|
|
dev:
|
|
go tool air -build.stop_on_error "true"
|