Gopher is a Go project management CLI tool.
Usage • Config • Install
gopher run
- use --web to run the program in the browser - use -w, --watch to live-reload your code on change
On your initial call a settings.json file will be created at ~/.config/gopher. Here you can customize aspects of the CLI to your liking.
Default values are as shown:
Download pre-built binary for your system here Releases.
- Clone this repository
git clone https://github.com/CoreyRobinsonDev/gopher.git- Create gopher binary
cd gopher
go build- Move binary to
/usr/local/binto call it from anywhere in the terminal
sudo mv ./gopher /usr/local/bin- Confirm that the program was built successfully
gopher
{ // enables stylized output for errors when running 'gopher run' and 'gopher build' "prettyPrint": true, // the number of lines around the the errored line to output when 'prettyPrint' is enabled "prettyPrintPreviewLines": 3, // the number of packages to query for when 'gopher add {package}' is ran "pkgQueryLimit": 10 }