9 lines
323 B
PowerShell
9 lines
323 B
PowerShell
# Установка Supabase CLI через scoop
|
|
if (!(Get-Command scoop -ErrorAction SilentlyContinue)) {
|
|
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
|
|
irm get.scoop.sh | iex
|
|
}
|
|
|
|
# Установка Supabase CLI
|
|
scoop bucket add supabase https://github.com/supabase/scoop-bucket.git
|
|
scoop install supabase |