Set up your dev environment
Everything you need before building your first project
1. Open your terminal
Press Cmd + Space, type "Terminal", and hit Enter. Or download iTerm2 for a better experience.
Once open, navigate to where you want your projects:
mkdir -p ~/Projects && cd ~/Projects
2. Install Git
Git tracks your code changes and lets you collaborate. Install it first:
xcode-select --install
Then set your identity:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
To authenticate with GitHub from the terminal:
brew install gh
gh auth login
3. Install Node.js
Node.js runs JavaScript outside the browser. Most frameworks and AI tools need it.
brew install node
If you don't have Homebrew, install it first: https://brew.sh
Verify it works:
node --version
4. Pick an AI coding tool
Install at least one. These are the tools that read your startwell config files and help you build.
Claude Code
DocsAnthropic's AI coding assistant in your terminal
npm install -g @anthropic-ai/claude-code
You're all set!
Start building a project