{"id":18354526,"url":"https://github.com/manuelpuchta/development-setup","last_synced_at":"2026-04-08T18:05:03.361Z","repository":{"id":143766233,"uuid":"246555042","full_name":"manuelpuchta/development-setup","owner":"manuelpuchta","description":"My macOS development setup.","archived":false,"fork":false,"pushed_at":"2024-10-04T08:04:46.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T16:04:28.054Z","etag":null,"topics":["gem","homebrew","macos","node","npm","ruby","xcode"],"latest_commit_sha":null,"homepage":null,"language":null,"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/manuelpuchta.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-11T11:38:29.000Z","updated_at":"2024-10-04T08:04:48.000Z","dependencies_parsed_at":"2025-02-15T16:45:04.544Z","dependency_job_id":"7dd13bcb-ed52-4008-b261-675f3e9d59dc","html_url":"https://github.com/manuelpuchta/development-setup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manuelpuchta/development-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelpuchta%2Fdevelopment-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelpuchta%2Fdevelopment-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelpuchta%2Fdevelopment-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelpuchta%2Fdevelopment-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manuelpuchta","download_url":"https://codeload.github.com/manuelpuchta/development-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelpuchta%2Fdevelopment-setup/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267156087,"owners_count":24044409,"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":["gem","homebrew","macos","node","npm","ruby","xcode"],"created_at":"2024-11-05T22:04:25.625Z","updated_at":"2025-12-30T21:59:17.910Z","avatar_url":"https://github.com/manuelpuchta.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# development-setup\n\n_Installation overview:_\n\n- [Show hidden files](#show-hidden-files)\n- [Oh My Zsh](#install-oh-my-zsh)\n- [Xcode and Command Line Tools](#install-xcode-and-command-line-tools)\n- [Homebrew](#install-homebrew)\n- [Node](#install-node-with-node-version-manager-two_hearts) (version manager) and/or [asdf](#install-asdf-multiple-runtime-version-management) (multiple runtime version management)\n\n## Show hidden files\n\n```sh\ndefaults write com.apple.Finder AppleShowAllFiles true\nkillall Finder\n```\n\n## Install Oh My Zsh\n\nDocs: [https://ohmyz.sh/](https://ohmyz.sh/)\n\n```sh\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n```\n\n## Install Xcode and Command Line Tools\n\n- App store: search for \"Xcode\"\n- Apple documentation [website](https://developer.apple.com/xcode/).\n\nInstall Command Line Tools:\n\n```sh\n# Already installed?\nxcode-select --version\n\n# If not, install:\nxcode-select --install\n```\n\n## Install Homebrew\n\nAwesome package manager for macOS.\nDocs: [https://brew.sh/](https://brew.sh/)\n\n```sh\n# Install\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n\n# Restart the terminal. Successful? Following command should print a version number.\nbrew --version\n\n# 'doctor' command helps with potential macOS issues\nbrew doctor\n```\n\n## Install Node (with Node version manager) :two_hearts:\n\nDocs: [nvm](https://github.com/nvm-sh/nvm), is a node version manager for [node.js](https://nodejs.org/en/), which will save us a lot of version troubles in the future. :sparkles:\n\nPre-check for [latest install script](https://github.com/nvm-sh/nvm#installing-and-updating).\n\n```sh\n# Install\ncurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash\n\n# Restart the terminal. Successful? Following command should print a version number.\nnvm --version\n\n# macOS 10.15.x and above have the Z Shell (zsh) as default, so nvm source lines should be present in zsh config file `~/.zshrc`, search for the NVM_DIR export: `export NVM_DIR`\n\n# List, install latest node LTS version and set it as default:\nnvm ls-remote\n\n# Install v12.16.1, for example:\nnvm install 12.16.1\n\n# Use it:\nnvm use 12.16.1\n\n# Set it as default\nnvm alias default 12.16.1\n\n# node and npm version check\nnode --version \u0026\u0026 npm --version\n\n# Will print\nv12.16.1\n6.13.4\n```\n\n## Install asdf (multiple runtime version management)\n\nDocs: [https://asdf-vm.com/](https://asdf-vm.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuelpuchta%2Fdevelopment-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanuelpuchta%2Fdevelopment-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuelpuchta%2Fdevelopment-setup/lists"}