Last active
March 9, 2026 16:41
-
-
Save jlschrag/635ba89c5b6ab55091e346a1b46f04b5 to your computer and use it in GitHub Desktop.
Coder Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| brew install docker colima | |
| sudo ln -sf $HOME/.colima/default/docker.sock /var/run/docker.sock | |
| brew services start colima | |
| curl -L https://coder.com/install.sh | sh | |
| # Make modifications below to .ssh config | |
| coder login | |
| coder config-ssh | |
| coder server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Make these additions to the ~/.ssh/config to allow the Coder Workspace to use the SSH keys from the host OS | |
| Host *.coder | |
| ForwardAgent yes | |
| AddKeysToAgent yes | |
| Host github.com | |
| AddKeysToAgent yes | |
| UseKeychain yes | |
| IdentityFile ~/.ssh/id_ed25519 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # In the coder workspace, run the following | |
| git config --global user.name "Your Name" | |
| git config --global user.email "me@email.com" | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash | |
| nvm install --lts | |
| npm install @mariozechner/pi-ai | |
| npm install @mariozechner/pi-agent-core | |
| npm install -g @mariozechner/pi-coding-agent | |
| export ANTHROPIC_API_KEY=anthropic_key_here | |
| pi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment