vito / booklit

a pretty lit content authoring system
https://booklit.page
MIT License
175 stars 55 forks source link

Add GOPATH step to CLI install docs #50

Closed abrennan89 closed 2 years ago

abrennan89 commented 2 years ago

In the Getting Started:

# add booklit to go.mod and install CLI
go get github.com/vito/booklit/cmd/booklit

Installs the CLI, but using commands after this step without adding GOPATH/bin to the $PATH doesn't work. This may be common knowledge for more experienced users 🙂 but for Go n00bs like myself, it would be a nice UX to have this step included in the docs:

export PATH=$(go env GOPATH)/bin:$PATH