Quick Start¶
Get a Laravel project running locally in three commands.
# 1. Park your projects directory
# Any Laravel project inside is auto-registered
lerd park ~/Lerd
# 2. Visit your project in a browser
# ~/Lerd/my-app → http://my-app.test
# 3. Check everything is running
lerd status
lerd parkregisters the directory with the watcher service. Every subdirectory that looks like a Laravel project gets a.testdomain automatically.- No
/etc/hostsedits needed — DNS is handled by dnsmasq running in a Podman container. lerd statusshows a health summary: DNS, nginx, PHP-FPM containers, services, and cert expiry.
That's it. Nginx is serving your project through PHP-FPM, all inside Podman containers on the lerd network.
First project bootstrap¶
For a freshly cloned project, use lerd setup to run all the standard setup steps in one go:
A checkbox list appears with all available steps pre-selected. Toggle steps with space, confirm with enter, and watch them run sequentially.
See Project Setup for the full details.
Web UI¶
The dashboard is available at http://127.0.0.1:7073 once Lerd is installed. It gives you a visual overview of all your sites, services, and system health.
See Web UI for details.