Add doc command to Makefile
This commit is contained in:
parent
dd0a466bd3
commit
998f718354
6
Makefile
6
Makefile
|
@ -31,4 +31,8 @@ clean:
|
||||||
rm -rf ./bin
|
rm -rf ./bin
|
||||||
go clean -i -x -r -modcache
|
go clean -i -x -r -modcache
|
||||||
|
|
||||||
.PHONY: test clean generate vendor install-devtools lint watch tidy
|
doc:
|
||||||
|
@echo "Open your browser to http://localhost:6060/pkg/forge.cadoles.com/Pyxis/orion/ to see the documentation"
|
||||||
|
@godoc -http=:6060
|
||||||
|
|
||||||
|
.PHONY: test clean generate vendor install-devtools lint watch tidy doc
|
Reference in New Issue