Setting up a new developer machine
- Download Apps via Self Service
- Local
- VS Code
- Chrome (optional)
- Download CLI Apps
- Homebrew, then
- PHP (
brew install php) - npm (with nvm)
- node (LTS or current)
- composer
- sudo mv composer.phar /usr/local/bin/composer to move it to global
VS Code Plugins
from .vscode/extensions.json in the Template theme
{
"recommendations": [
"stylelint.vscode-stylelint",
"torresgol10.bootstrap-class-autocomplete",
"streetsidesoftware.code-spell-checker",
"naumovs.color-highlight",
"dbaeumer.vscode-eslint",
"rifi2k.format-html-in-php",
"pkief.material-icon-theme",
"wongjn.php-sniffer",
"ms-playwright.playwright",
"esbenp.prettier-vscode",
"richie5um2.vscode-sort-json",
"redhat.vscode-yaml"
]
}