Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ This script pulls the latest changes and copies `.gitconfig`, `.pre-commit-confi

### Initial Mac Setup

For a new Mac, run the setup script to install actionlint, Cocoapods, Docker CLI, Flutter, GitHub CLI, GitLab CLI, Go, Homebrew, Kiro CLI, LLVM, mole, Node.js, Ollama, opencode, Python, QEMU, Ruby, Rust, yamllint, Zsh, and configure Git hooks globally. It also offers to log in to Docker Hub:
For a new Mac, run the setup script to install actionlint, Brev, Cocoapods, Docker CLI, Flutter, GitHub CLI, GitLab CLI, Go, Homebrew, Kiro CLI, LLVM, mole, Node.js, Ollama, opencode, Python, QEMU, Ruby, Rust, yamllint, Zsh, and configure Git hooks globally. It also offers to log in to Docker Hub:

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/bniladridas/github-dotfiles/main/setup-mac.sh)"
Expand Down
8 changes: 8 additions & 0 deletions setup-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,14 @@ brew install docker
echo "Installing QEMU..."
brew install qemu

echo "Installing Brev..."
if brew install brevdev/homebrew-brev/brev; then
log "Brev installed successfully."
else
log "ERROR: Failed to install Brev."
exit 1
fi

echo "Setting up Docker Hub..."
read -r -p "Do you want to log in to Docker Hub? (y/N): " login_choice
if [[ "$login_choice" =~ ^[Yy]$ ]]; then
Expand Down