cli icon indicating copy to clipboard operation
cli copied to clipboard

Installing on non-standard linux systems (archlinux)

Open Billcountry opened this issue 3 years ago • 0 comments

Improve documentation

Link

README

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"

Billcountry avatar Aug 06 '22 09:08 Billcountry