Skip to content

gofast-live/gofast-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.4.1/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.4.1/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.4.1/gofast-windows-amd64.exe
move gofast.exe C:\Windows\System32