<p>Grove has grown a lot. It started as "serve <code>*.test</code> with HTTPS," and somewhere along the way it quietly became the whole workbench. So here's a friendly tour of things Grove already does for you — a few of which even regular users are surprised to learn. Grab a coffee; this is the good kind of list.</p><h2>🔒 Did you know… every site gets real HTTPS, automatically?</h2><p>No self-signed warnings, no manual certs. Grove runs its own trusted local CA and issues a certificate per site on demand. <code>grove secure myapp</code> and you've got a green padlock on <code>https://myapp.test</code>.</p><h2>🌐 Did you know… you don't edit /etc/hosts?</h2><p>Grove has a built-in DNS resolver for your TLD. Drop a project in a parked folder and it's instantly <code>name.test</code> — no hosts file, no dnsmasq.</p><h2>📁 Did you know… you can serve a whole folder at once?</h2><p><code>grove park ~/Code</code> turns every subdirectory into its own <code>.test</code> site. New project tomorrow? It's already served. Or <code>grove link</code> a single one.</p><h2>🐘 Did you know… you can run multiple PHP versions side by side?</h2><p><code>grove php install 8.3</code> and <code>grove isolate legacy-app 8.1</code> — each site gets its own PHP, no juggling. And they're bundled static builds, so no Homebrew.</p><h2>⬢ Did you know… Node is bundled too?</h2><p><code>grove node install 22</code>, pin it per site with <code>grove node use</code>. No nvm, no fighting shell init files.</p><h2>🌱 Did you know… Grove can scaffold a fresh app?</h2><p><code>grove new myapp</code> runs the official <code>laravel new</code> under the hood — pick a starter kit (Livewire, React, Vue, or a community one) and it's created, linked, and served, ready at <code>https://myapp.test</code>.</p><h2>⚡ Did you know… you don't have to run npm run dev or composer run dev yourself?</h2><p>Toggle ⚡ on a site (or <code>grove dev start myapp</code>) and Grove supervises the Vite dev server and your queue worker — over trusted HTTPS, with the logs in the Logs panel. No more forgotten terminal tabs.</p><h2>📧 Did you know… every outgoing email is caught, not sent?</h2><p>Grove runs a built-in mail-catcher. Point your app at it and read every message in the Mail panel — password resets, receipts, notifications — without a single real email leaving your machine.</p><h2>🗄️ Did you know… there's a database client that already knows your projects?</h2><p>Open the Database panel and your projects are just… there — Grove reads each site's <code>.env</code> and connects. Browse tables, run SELECTs, no connection details to type.</p><h2>✏️ Did you know… you can edit data right in Grove (Pro)?</h2><p>Double-click a cell to edit it, flip to the Schema tab to see columns, indexes, and foreign keys — and a production-safety guard flags prod-looking connections and blocks edits, so you can't fat-finger live data.</p><h2>🔐 Did you know… your team can share a .env securely (Teams)?</h2><p><code>grove secret set myapp DB_PASSWORD=…</code>, <code>grove secret share myapp &lt;teammate&gt;</code>, and they run <code>grove secret pull --write</code>. End-to-end encrypted — never pasted into Slack again.</p><h2>⇄ Did you know… Grove keeps a live timeline of every request?</h2><p>Because Grove is the proxy, the Requests panel shows every request it handles — method, path, status, and duration — for any site, any framework. A zero-config peek at what your app is doing.</p><h2>🌍 Did you know… you can share a local site on the internet in one command?</h2><p><code>grove share myapp</code> gives you a public URL — perfect for a webhook, a quick demo, or testing on your phone. Native, built in, no ngrok account.</p><h2>🛠️ Did you know… Grove has a Tools panel and a Logs panel?</h2><p>The Tools panel migrates a MySQL database from Herd and converts databases between MySQL, PostgreSQL, and SQLite. The Logs panel parses your Laravel logs and Grove's own service logs into a tidy level/date/message view with a stacktrace pane — no <code>tail -f</code>.</p><h2>And the quiet one underneath it all</h2><p>💚 <strong>Did you know… all of that runs with zero external dependencies?</strong></p><p>No Homebrew, no Docker, no dnsmasq, no OpenSSL, no Composer required to bootstrap. DNS, the reverse proxy, FastCGI, and TLS are built into a single Rust core; PHP, Node, and the databases are downloaded and supervised by Grove itself. Clean machine to a running <code>*.test</code> app with a padlock, in minutes.</p><p>If a few of these were news to you, you're not alone — Grove does a lot on your behalf, quietly. Now you know. 🌱🌳</p><p>Everything here except the Pro bits (data editing, schema inspector, team secret sync) is free and open source, forever. Try it at <a target="_blank" rel="noopener noreferrer nofollow" href="https://elyracode.com/grove">elyracode.com/grove</a>.</p>