Git
sudo apt install -y git
git config --global user.name "Your Name"
git config --global user.email "you@example.com"Node.js
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt install -y nodejs
node --version && npm --versionPython
sudo apt install -y python3 python3-pip python3-venv
python3 --versionPHP
sudo apt install -y php8.2-cli php8.2-mbstring php8.2-xml php8.2-curl
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composerDocker
curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USERVS Code Remote Development
Install the "Remote - SSH" extension in VS Code. Add your server to SSH config, then connect. You get a full IDE experience with the files on your Breeze.
tmux for Multi-Pane Work
sudo apt install -y tmux
tmux new -s dev
# Split panes: Ctrl+B, % (vertical) or " (horizontal)
# One pane for editor, one for running app, one for logs