<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Maxim Gubenko</title>
    <description>The latest articles on DEV Community by Maxim Gubenko (@maxbenk).</description>
    <link>https://dev.to/maxbenk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1189182%2Fba020775-acb4-4e42-8dee-d4748ffdd8ea.jpeg</url>
      <title>DEV Community: Maxim Gubenko</title>
      <link>https://dev.to/maxbenk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maxbenk"/>
    <language>en</language>
    <item>
      <title>MacFullStack: a native local PHP stack for macOS that goes beyond Laravel-only tooling</title>
      <dc:creator>Maxim Gubenko</dc:creator>
      <pubDate>Mon, 24 Aug 2026 18:56:10 +0000</pubDate>
      <link>https://dev.to/maxbenk/macfullstack-a-native-local-php-stack-for-macos-that-goes-beyond-laravel-only-tooling-25mo</link>
      <guid>https://dev.to/maxbenk/macfullstack-a-native-local-php-stack-for-macos-that-goes-beyond-laravel-only-tooling-25mo</guid>
      <description>&lt;p&gt;If you have ever spent half a Monday wiring PHP, nginx, MySQL, and HTTPS on a new Mac — before writing a single line of code — you know the problem.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://herd.laravel.com/" rel="noopener noreferrer"&gt;Laravel Herd&lt;/a&gt; nailed Laravel DX. &lt;a href="https://www.mamp.info/" rel="noopener noreferrer"&gt;MAMP&lt;/a&gt; is the classic one-click LAMP stack. &lt;a href="https://ddev.com/" rel="noopener noreferrer"&gt;DDEV&lt;/a&gt; gives you Docker recipes for CMS projects. They are all good at what they do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://macfullstack.com" rel="noopener noreferrer"&gt;MacFullStack&lt;/a&gt;&lt;/strong&gt; is a native macOS app that tries to cover the whole local-dev workflow: PHP stack, arbitrary CMS projects, Node/Python proxies, mail, SQL, FTP deploy, and — in the latest release — an in-app code workspace called &lt;strong&gt;Project Studio&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It is built for Apple Silicon, macOS 14+, and ships a &lt;strong&gt;Native runtime by default&lt;/strong&gt; (no Docker Desktop required for everyday work). Docker mode is there when you want isolation.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pitch in one sentence
&lt;/h2&gt;

&lt;p&gt;Stop assembling ten tabs (Docker, phpMyAdmin, Mailpit, FileZilla, terminal, browser) just to open a client site locally.&lt;/p&gt;

&lt;p&gt;MacFullStack puts the stack, domains, HTTPS, services, and dev tools in one SwiftUI app with a Rust CLI under the hood.&lt;/p&gt;

&lt;h2&gt;
  
  
  Native first, Docker when you need it
&lt;/h2&gt;

&lt;p&gt;Most days I do not want Docker Desktop eating RAM and battery.&lt;/p&gt;

&lt;p&gt;MacFullStack’s &lt;strong&gt;Native mode&lt;/strong&gt; runs bundled PHP (8.0–8.5), nginx, MySQL/MariaDB, Redis, Mailpit, and related services directly on the Mac. Switch to &lt;strong&gt;Docker mode&lt;/strong&gt; when a project needs container isolation — project folders stay shared; service data is separate per mode.&lt;/p&gt;

&lt;p&gt;Default URLs look like:&lt;br&gt;
&lt;a href="http://myproject.localhost:8088/" rel="noopener noreferrer"&gt;http://myproject.localhost:8088/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That avoids needing admin privileges for ports 80/443 out of the box. You can enable 80/443 in settings if you prefer.&lt;/p&gt;

&lt;p&gt;HTTPS is handled via mkcert — no manual certificate wrestling for every new hostname.&lt;/p&gt;

&lt;h2&gt;
  
  
  Not just “our” templates — real client archives
&lt;/h2&gt;

&lt;p&gt;This is where MacFullStack diverges from Laravel-first tools.&lt;/p&gt;

&lt;p&gt;Native nginx does not read &lt;code&gt;.htaccess&lt;/code&gt;. When you drop a WordPress zip, a Bitrix dump, or a legacy PHP admin panel into your projects folder, MacFullStack tries to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Detect the &lt;strong&gt;real docroot&lt;/strong&gt; (&lt;code&gt;public/&lt;/code&gt;, CMS-specific layouts, etc.)&lt;/li&gt;
&lt;li&gt;Generate &lt;strong&gt;nginx rewrite and security rules&lt;/strong&gt; equivalent to common &lt;code&gt;.htaccess&lt;/code&gt; patterns&lt;/li&gt;
&lt;li&gt;Wire up a local domain so the site actually opens&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Laravel, WordPress, Symfony, Drupal, Bitrix, custom PHP — the goal is “upload archive → open domain → it works,” not “only scaffolds we generated.”&lt;/p&gt;

&lt;h2&gt;
  
  
  Node, Vite, Next, Django — first-class-ish
&lt;/h2&gt;

&lt;p&gt;PHP-only local stacks feel outdated when half your work is a Vite frontend or a Django API.&lt;/p&gt;

&lt;p&gt;On &lt;strong&gt;Pro&lt;/strong&gt;, MacFullStack treats JS and Python frameworks similarly: detect the dev server, proxy the project domain to it, and manage the worker process. Same mental model as PHP vhosts, not a separate workflow in another terminal you forget to start.&lt;/p&gt;

&lt;h2&gt;
  
  
  Everything in one window
&lt;/h2&gt;

&lt;p&gt;Things that should not require five apps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Mailpit&lt;/strong&gt; — catch outbound email inside the app&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SQL console&lt;/strong&gt; — queries and table browsing, plus phpMyAdmin&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Doctor&lt;/strong&gt; — stack, ports, and Docker diagnostics&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;⌘K palette&lt;/strong&gt; — jump to projects, services, logs, Mailpit&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Share&lt;/strong&gt; — client preview via Cloudflare or ngrok (Pro)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;FTP Manager&lt;/strong&gt; — FTP/FTPS/SFTP two-pane sync (Pro)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deploy Profiles&lt;/strong&gt; — build → upload → database checklist (Pro)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP for Cursor&lt;/strong&gt; — projects, logs, Doctor, start/stop stack&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The MCP piece matters if you live in Cursor: the agent can inspect local stack state without you copy-pasting terminal output.&lt;/p&gt;

&lt;h2&gt;
  
  
  New in 1.1.6: Project Studio (Pro)
&lt;/h2&gt;

&lt;p&gt;The latest release adds &lt;strong&gt;Project Studio&lt;/strong&gt; — a sidebar workspace inspired by Herd’s Site Manager idea:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Project list + file tree + tabbed editor&lt;/li&gt;
&lt;li&gt;Syntax highlighting (PHP, JS/TS, Blade, JSON, &lt;code&gt;.env&lt;/code&gt;, …)&lt;/li&gt;
&lt;li&gt;Line numbers, find/replace, go-to-line, Tab indent&lt;/li&gt;
&lt;li&gt;Bottom dock: &lt;strong&gt;logs&lt;/strong&gt;, &lt;strong&gt;terminal&lt;/strong&gt; (project CWD), &lt;strong&gt;&lt;code&gt;.env&lt;/code&gt; editor&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Quick actions: browser, external IDE, Finder&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It will not replace PhpStorm for huge refactors. For “open this config, tail the log, tweak &lt;code&gt;.env&lt;/code&gt;, run one artisan command” — it keeps you inside the stack app instead of alt-tabbing across half the dock.&lt;/p&gt;

&lt;p&gt;Free tier shows the section with an upgrade CTA; full Studio access is &lt;strong&gt;Pro/Teams&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who is it for?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Good fit:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PHP/CMS freelancers and small studios on Mac&lt;/li&gt;
&lt;li&gt;Devs who juggle Laravel &lt;em&gt;and&lt;/em&gt; WordPress/Bitrix/legacy PHP&lt;/li&gt;
&lt;li&gt;Teams who want Native day-to-day + Docker occasionally&lt;/li&gt;
&lt;li&gt;Cursor users who want MCP hooked into the local stack&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Maybe not:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You only ever run pure Laravel and Herd already makes you happy&lt;/li&gt;
&lt;li&gt;You need Linux or Windows (MacFullStack is macOS Apple Silicon only today)&lt;/li&gt;
&lt;li&gt;You want 100% open-source infra-as-code — this is a productized GUI stack (Docker mode exists)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Pricing
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Free&lt;/strong&gt; — one PHP project + core services (MySQL/MariaDB, Redis, Mailpit, phpMyAdmin). No card.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pro&lt;/strong&gt; — unlimited projects, Project Studio, FTP/Deploy, Next/Django/Python, Share, Postgres, Clients cabinet&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Teams&lt;/strong&gt; — same Pro features, more seats/devices for studios&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Details: &lt;a href="https://macfullstack.com/pricing" rel="noopener noreferrer"&gt;macfullstack.com/pricing&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting started
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Download &lt;strong&gt;MacFullStack Free&lt;/strong&gt; from &lt;a href="https://macfullstack.com/download" rel="noopener noreferrer"&gt;macfullstack.com/download&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Create a project (template or import an archive)&lt;/li&gt;
&lt;li&gt;Open the site on the generated &lt;code&gt;.localhost&lt;/code&gt; domain&lt;/li&gt;
&lt;li&gt;Optional: activate Pro in &lt;strong&gt;Settings → License&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Docs: &lt;a href="https://macfullstack.com/features" rel="noopener noreferrer"&gt;macfullstack.com/features&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Changelog: &lt;a href="https://macfullstack.com/changelog" rel="noopener noreferrer"&gt;macfullstack.com/changelog&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Final thought
&lt;/h2&gt;

&lt;p&gt;Local dev stacks are a solved problem &lt;em&gt;until&lt;/em&gt; your client sends a Bitrix backup, a Next frontend, and an email form that only breaks on real HTTPS domains.&lt;/p&gt;

&lt;p&gt;MacFullStack is an attempt to keep that whole mess in one native Mac app — closer to “Herd-class polish,” but wider in scope.&lt;/p&gt;

&lt;p&gt;If that matches your workflow, try the free tier and see whether your next import opens on the first click:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://macfullstack.com" rel="noopener noreferrer"&gt;https://macfullstack.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>softwaredevelopment</category>
      <category>tools</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
