Quickstart
Prerequisites
1. Install the CLI
curl -fsSL https://cli.stacksync.com/install.sh | sh$Version = (Invoke-RestMethod https://cli.stacksync.com/latest).Trim()
$Url = "https://cli.stacksync.com/$Version/stacksync-windows-x64.zip"
$Root = Join-Path $env:LOCALAPPDATA "stacksync"
$Zip = Join-Path $env:TEMP "stacksync.zip"
Invoke-WebRequest -Uri $Url -OutFile $Zip
Expand-Archive -Path $Zip -DestinationPath $Root -Force
$Bin = Join-Path $Root "stacksync"
[Environment]::SetEnvironmentVariable(
"Path",
"$([Environment]::GetEnvironmentVariable('Path', 'User'));$Bin",
"User"
)
$env:Path = "$Bin;$env:Path"stacksync --version2. Authenticate




Next Steps
Build your first workflow connectorLast updated