Install GoFast CLI

Check out the repo for more insights:

https://github.com/gofast-live/gofast-cli

Using Go

Make sure you have the Go installed:

https://go.dev/doc/install

Check if your PATH includes the Go bin directory. You can add it to your ~/.bashrc or ~/.zshrci file:

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

Get the latest version of GoFast CLI:

go install github.com/gofast-live/gofast-cli/cmd/gofast@latest

Downloading 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

Retrive the api key

Log in to the admin panel and retrieve your special key:

https://admin.gofast.live

Run the GoFast CLI

gofast

You will be prompted to insert your email and the API key you retrieved in step 1:

CLI Login Screen

Log in and let it guide you through! Have fun :)

Download the GoFast Repository

In case you have problems with the CLI, you can always download the repository. But please remember, the CLI is still the recommended way since it cleans and sets up the project for you:

curl -GLf \
    -H "Authorization: Bearer <YOUR_TOKEN>" \
    https://admin.gofast.live/api/download \
    -d "email=<YOUR_EMAIL>" \
    --output gofast.zip