Table of Contents

What you’ll end up with


0) Open a terminal

Create (or jump into) your projects folder:

# macOS / Linux
mkdir -p ~/Developer && cd ~/Developer
# Windows PowerShell
New-Item -ItemType Directory -Force "$HOME\\Developer" | Out-Null
Set-Location "$HOME\\Developer"

1) Quick prerequisite checks

macOS / Linux