AWS CLIaws
Official CLI for Amazon Web Services — manage AWS resources
getcli install aws --yesvia brew$ aws s3 ls$ aws ec2 describe-instances --output json$ aws sts get-caller-identityDocker CLIdocker
Build, run, and manage containers and images
getcli install docker --yesvia brew$ docker ps$ docker build -t myapp .$ docker compose up -d$ docker images --format jsonFirebase CLIfirebase
Manage Firebase projects — hosting, functions, Firestore, and auth
getcli install firebase --yesvia npm$ firebase projects:list$ firebase deploy --only hosting$ firebase emulators:startFly.io CLIfly
Deploy and manage apps on Fly.io's global platform
getcli install fly --yesvia brew$ fly apps list$ fly deploy$ fly status --jsonGitHub CLIgh
Official CLI for GitHub — manage repos, PRs, issues, and more
getcli install github --yesvia brew$ gh repo list$ gh issue list$ gh pr create --title "fix: typo" --body "Fixed a typo"kubectlkubectl
Kubernetes CLI — manage clusters, deployments, and services
getcli install kubectl --yesvia brew$ kubectl get pods -A$ kubectl apply -f deployment.yaml$ kubectl logs -f deployment/myapp$ kubectl get nodes -o jsonNetlify CLInetlify
Deploy sites and manage Netlify services from the command line
getcli install netlify --yesvia npm$ netlify deploy --prod$ netlify sites:list --json$ netlify devRailway CLIrailway
Deploy and manage projects on Railway — databases, services, and more
getcli install railway --yesvia brew$ railway status$ railway up$ railway logsStripe CLIstripe
Official CLI for Stripe — test webhooks, manage resources, and trigger events
getcli install stripe --yesvia brew$ stripe listen --forward-to localhost:3000/webhook$ stripe trigger payment_intent.succeeded$ stripe resources listSupabase CLIsupabase
Manage Supabase projects — database, auth, storage, and edge functions
getcli install supabase --yesvia brew$ supabase projects list$ supabase db push$ supabase functions deploy my-functionTerraform CLIterraform
Infrastructure as Code — provision and manage cloud resources declaratively
getcli install terraform --yesvia brew$ terraform init$ terraform plan -out=plan.tfplan$ terraform apply plan.tfplan$ terraform state listTurso CLIturso
CLI for Turso — the edge SQLite database built on libSQL
getcli install turso --yesvia brew$ turso db list$ turso db create my-db$ turso db shell my-dbVercel CLIvercel
Deploy and manage Vercel projects from the command line
getcli install vercel --yesvia npm$ vercel deploy$ vercel env ls$ vercel domains lsCloudflare Wranglerwrangler
CLI for Cloudflare Workers — develop, test, and deploy serverless functions
getcli install wrangler --yesvia npm$ wrangler init my-project$ wrangler deploy$ wrangler dev