-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevtools.sh
More file actions
executable file
·40 lines (29 loc) · 810 Bytes
/
devtools.sh
File metadata and controls
executable file
·40 lines (29 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
set -e
echo "Installing developer tools..."
# OrbStack (Docker + Linux VM)
brew install --cask orbstack
# Docker CLI
brew install docker
# kubectl (Kubernetes CLI)
brew install kubectl
# Helm (Kubernetes package manager)
brew install helm
# Postman
brew install --cask postman
# Google Cloud SDK
brew install --cask google-cloud-sdk
# ChatGPT desktop app (OpenAI)
brew install --cask chatgpt
# Claude Code (AI coding assistant)
echo "Installing Claude Code..."
curl -fsSL https://claude.ai/install.sh | bash
# Playwright CLI (browser automation)
if ! command -v playwright >/dev/null 2>&1; then
echo "Installing Playwright..."
npm install -g playwright
npx playwright install
else
echo "Playwright already installed — skipping"
fi
echo "Developer tools installation complete."