Public releases for the Raptor CLI tool.
Download the latest release for your platform:
# AMD64
curl -L -o raptor https://github.com/Facets-cloud/raptor-releases/releases/latest/download/raptor-linux-amd64
chmod +x raptor
sudo mv raptor /usr/local/bin/
# ARM64
curl -L -o raptor https://github.com/Facets-cloud/raptor-releases/releases/latest/download/raptor-linux-arm64
chmod +x raptor
sudo mv raptor /usr/local/bin/# Intel
curl -L -o raptor https://github.com/Facets-cloud/raptor-releases/releases/latest/download/raptor-darwin-amd64
chmod +x raptor
sudo mv raptor /usr/local/bin/
# Apple Silicon
curl -L -o raptor https://github.com/Facets-cloud/raptor-releases/releases/latest/download/raptor-darwin-arm64
chmod +x raptor
sudo mv raptor /usr/local/bin/After installation, configure your Facets Control Plane credentials:
raptor loginThis will:
- Prompt for your Control Plane URL
- Open your browser to generate a token
- Save credentials to
~/.facets/credentials
# View all available commands
raptor --help
# List projects
raptor get projects
# Get resources in a project
raptor get resources -p myprojectTo manage multiple environments, use the FACETS_PROFILE environment variable:
# Login with a custom profile name
raptor login # Enter "production" when prompted for profile name
# Use the profile
export FACETS_PROFILE=production
raptor get projects