cli
cli copied to clipboard
Installing on non-standard linux systems (archlinux)
Improve documentation
Link
Describe the problem
- Install documentation doesn't cover the scenario for installation in linux outside apk/deb/rpm
Describe the improvement
- One proposal is to simply install this repo as a go package which worked for me:
go install github.com/supabase/cli@latest
mv $(go env GOPATH)/bin/cli $(go env GOPATH)/bin/supabase
This makes the executable accessible in cli, the following might need to be included in .bashrc
export PATH="$PATH:$(go env GOPATH)/bin"