# Packages
No description provided by the author
# README
GoFast CLI
The Ultimate Foundation for High-Performance, Scalable Web Applications.
Build
GOOS=linux GOARCH=amd64 go build -o gofast-linux-amd64
GOOS=darwin GOARCH=amd64 go build -o gofast-darwin-amd64
GOOS=windows GOARCH=amd64 go build -o gofast-windows-amd64.exe
Installation
Using Go
go install github.com/gofast-live/gofast-cli/cmd/gofast@latest
Make sure that your PATH
includes the Go bin directory. You can add it to your ~/.bashrc
or ~/.zshrc
file.
export PATH=$PATH:$(go env GOPATH)/bin
Download the binary
Go to the Releases page and download the appropriate binary for your operating system.
Install the binary
Linux
wget https://github.com/gofast-live/gofast-cli/releases/download/v0.12.0/gofast-linux-amd64 -O /usr/local/bin/gofast
chmod +x /usr/local/bin/gofast
macOS
wget https://github.com/gofast-live/gofast-cli/releases/download/v0.12.0/gofast-darwin-amd64 -O /usr/local/bin/gofast
chmod +x /usr/local/bin/gofast
Windows
curl -L -o gofast.exe https://github.com/gofast-live/gofast-cli/releases/download/v0.12.0/gofast-windows-amd64.exe
move gofast.exe C:\Windows\System32