Add doc command to Makefile

This commit is contained in:
wpetit 2018-09-19 17:23:28 +02:00
parent dd0a466bd3
commit 998f718354
1 changed files with 5 additions and 1 deletions

View File

@ -31,4 +31,8 @@ clean:
rm -rf ./bin
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