Setting up macOS 10.15+ for web development
Mac computers comes with macOS as default, being from Unix family, it is a great OS for software development. This post is about setting up your macOS computer to be used as a web development environment. Be aware that basic macOS skills is required, we will be using mostly Terminal application to perform the system update. We will be installing Free or Open Source tools. Install Homebrew To start things off we will install Homebrew package manager , Homebrew makes very simple to install packages on macOS. Now we can open Terminal and insert command below /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Install PHP When Homebrew installation is complete. We can continue with installing Homebrew packages. As instructed in the PHP manual Insert command below into Terminal, this process might take hours to be completed. brew install php Install Git Version control is a system that records changes to a file or set of fil...