Docs / Getting Started / Setting Up a Development Environment on Your Breeze

Setting Up a Development Environment on Your Breeze

By Admin · Feb 25, 2026 · Updated Apr 25, 2026 · 33 views · 1 min read

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 --version

Python

sudo apt install -y python3 python3-pip python3-venv
python3 --version

PHP

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/composer

Docker

curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USER

VS 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

Was this article helpful?