{"id":29745632,"url":"https://github.com/brybrophy/setup-dev-environment","last_synced_at":"2025-07-26T06:16:40.102Z","repository":{"id":302529613,"uuid":"1012761454","full_name":"brybrophy/setup-dev-environment","owner":"brybrophy","description":"Documentation for how to setup my personal development environment on a new machine","archived":false,"fork":false,"pushed_at":"2025-07-02T22:08:30.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-02T22:27:59.417Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brybrophy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-02T20:56:08.000Z","updated_at":"2025-07-02T22:08:34.000Z","dependencies_parsed_at":"2025-07-02T22:28:13.145Z","dependency_job_id":null,"html_url":"https://github.com/brybrophy/setup-dev-environment","commit_stats":null,"previous_names":["brybrophy/setup-dev-environment"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brybrophy/setup-dev-environment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brybrophy%2Fsetup-dev-environment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brybrophy%2Fsetup-dev-environment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brybrophy%2Fsetup-dev-environment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brybrophy%2Fsetup-dev-environment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brybrophy","download_url":"https://codeload.github.com/brybrophy/setup-dev-environment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brybrophy%2Fsetup-dev-environment/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267128032,"owners_count":24040156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-26T06:16:37.842Z","updated_at":"2025-07-26T06:16:40.094Z","avatar_url":"https://github.com/brybrophy.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mac Development Environment Setup\n\nThis is a repeatable checklist for setting up my development environment on a clean macOS install. It’s mostly for me, but I keep it readable in case someone else wants to see how I work.\n\n---\n\n## Prerequisites\n\n| What                         | Why                             | Command                                       |\n| ---------------------------- | ------------------------------- | --------------------------------------------- |\n| **macOS updates**            | Start from a clean, patched OS  | `System Settings → General → Software Update` |\n| **Xcode Command-Line Tools** | Needed for Homebrew \u0026 compilers | `xcode-select --install`                      |\n\n---\n\n## 1 · Install Homebrew\n\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\nbrew doctor  # Verify install\n```\n\n---\n\n## 2 · Shell \u0026 Zsh Plugins\n\n```bash\n# Zsh itself (new macs include it, but this gets the latest)\nbrew install zsh\n\n# Oh-My-Zsh (framework \u0026 plugin manager)\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n\n# Plugins\nbrew install zsh-autosuggestions zsh-syntax-highlighting\n```\n\n### Copy Config Files\n\nEverything is in the `config/` folder in this repo. Copy the files to your home directory:\n\n| Source file              | Destination                                  |\n| ------------------------ | -------------------------------------------- |\n| `config/.gitconfig`      | `~/.gitconfig`                               |\n| `config/.zshrc`          | `~/.zshrc`                                   |\n| `config/sobol.zsh-theme` | `~/.oh-my-zsh/custom/themes/sobol.zsh-theme` |\n\n`.zshrc` already includes:\n\n```zsh\n# Autosuggestions \u0026 syntax highlighting\nsource /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh\nsource /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh\n\n# Local binaries \u0026 mise\nexport PATH=\"$HOME/.local/bin:$PATH\"\neval \"$(~/.local/bin/mise activate zsh)\"\n```\n\n---\n\n## 3 · Mise (Runtime Manager)\n\n```bash\ncurl https://mise.run | sh\nmise doctor\n```\n\n### Node + pnpm\n\n```bash\nmise install node@latest\nmise use -g node@latest\n\ncorepack enable\ncorepack prepare pnpm@latest --activate\n```\n\n---\n\n## 4 · Visual Studio Code\n\nInstall from: [https://code.visualstudio.com/](https://code.visualstudio.com/)\n\nSettings Sync is enabled, so that will take care of extensions, themes, and settings.\n\nSee [`extensions.md`](extensions.md) for the list of extensions I use.\n\n---\n\n## 5 · Git \u0026 SSH\n\n```bash\nssh-keygen -t ed25519 -C \"$(git config user.email)\" -f ~/.ssh/id_ed25519 -N \"\"\ncat ~/.ssh/id_ed25519.pub\n```\n\nCopy the public key into GitHub under [SSH and GPG keys](https://github.com/settings/ssh/new).\n\nTo confirm Git is set up:\n\n```bash\ngit config --list --show-origin\n```\n\n---\n\n## 6 · Install Docker Desktop\n\n[https://www.docker.com/products/docker-desktop](https://www.docker.com/products/docker-desktop)\n\n---\n\n## 7 · Install Slack\n\n[https://slack.com/downloads/mac](https://slack.com/downloads/mac)\n\n---\n\n## 8 · Install Zoom\n\n[https://zoom.us/download](https://zoom.us/download)\n\n---\n\n## 9 · Install AWS CLI\n\n```bash\nbrew install awscli\n```\n\n---\n\n## 10 · Install Azure CLI\n\n```bash\nbrew install azure-cli\n```\n\n---\n\n## 11 · Post-Setup Checklist\n\n* Restart Terminal / `source ~/.zshrc`\n* `mise doctor` shows no issues\n* `node -v`, `pnpm -v` return versions\n* VS Code settings and extensions are synced\n* SSH key works: `ssh -T git@github.com`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrybrophy%2Fsetup-dev-environment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrybrophy%2Fsetup-dev-environment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrybrophy%2Fsetup-dev-environment/lists"}