<?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: Ruslan Ianberdin</title>
    <description>The latest articles on DEV Community by Ruslan Ianberdin (@ianberdin).</description>
    <link>https://dev.to/ianberdin</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%2F227571%2F5c307116-0fd5-4d5b-ba86-38e5c2870c15.jpg</url>
      <title>DEV Community: Ruslan Ianberdin</title>
      <link>https://dev.to/ianberdin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ianberdin"/>
    <language>en</language>
    <item>
      <title>Shipping full-stack apps from a prompt: what AI gets right, and where you still think</title>
      <dc:creator>Ruslan Ianberdin</dc:creator>
      <pubDate>Thu, 25 Jun 2026 19:03:27 +0000</pubDate>
      <link>https://dev.to/playcode/shipping-full-stack-apps-from-a-prompt-what-ai-gets-right-and-where-you-still-think-3gjj</link>
      <guid>https://dev.to/playcode/shipping-full-stack-apps-from-a-prompt-what-ai-gets-right-and-where-you-still-think-3gjj</guid>
      <description>&lt;p&gt;AI app builders crossed a line in the last year. They went from generating throwaway demos to scaffolding apps people actually deploy and charge money for. I've been shipping full-stack apps this way, and the honest engineering picture is more interesting than either the hype or the backlash. Here's the breakdown.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the model reliably gets right
&lt;/h2&gt;

&lt;p&gt;The boring 80% is genuinely solved:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Scaffolding and routing.&lt;/strong&gt; A coherent project structure, sane file layout, a working router. No more staring at an empty directory.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CRUD and boilerplate.&lt;/strong&gt; Endpoints, form handling, validation stubs, an auth flow that works on the first run.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Schema-to-UI.&lt;/strong&gt; Give it a data shape and it wires up the list/detail/edit screens that would have eaten your afternoon.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deploy config.&lt;/strong&gt; Build scripts, env wiring, the stuff everyone copies from a previous project anyway.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If your reaction is "that's just the easy part" - that's exactly the point. The easy part is most of the typing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where you still have to think
&lt;/h2&gt;

&lt;p&gt;The model produces &lt;em&gt;a&lt;/em&gt; plausible answer, not &lt;em&gt;the&lt;/em&gt; correct one for your domain. Four places it consistently needs a human:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Data modeling.&lt;/strong&gt; It will pick a reasonable-looking schema, but your invariants, relationships, and what-must-never-happen rules are domain knowledge it doesn't have. Review the data model before you look at a single screen.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Edge cases and error states.&lt;/strong&gt; The happy path is free. Empty states, partial failures, concurrent edits, the 3am "what if this is null" cases - those are still yours.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security boundaries.&lt;/strong&gt; Authorization (not just authentication), input validation at trust boundaries, and "can user A read user B's row" are where generated code is most confidently wrong. Read every access check.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Behavior under real load.&lt;/strong&gt; The query that's fine with 10 rows and melts at 100k. Profiling is human work.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  The part people underestimate: running it
&lt;/h2&gt;

&lt;p&gt;A generated app isn't done when it renders locally. It's done when it has a real backend, a database, HTTPS, a custom domain, and a way to undo a bad deploy. That last one matters most: the first time an AI-assisted change breaks prod, one-click rollback is the difference between a shrug and an outage. This is the half of the problem the "watch it build a landing page in 30 seconds" demos skip - and it's the half that decides whether you can actually trust the output. A platform like &lt;a href="https://playcode.io/cloud" rel="noopener noreferrer"&gt;Playcode Cloud&lt;/a&gt; runs the generated app with the database, hosting, previews, and snapshots already wired, so "ship it" and "roll it back" are buttons, not a weekend.&lt;/p&gt;

&lt;h2&gt;
  
  
  A workflow that holds up
&lt;/h2&gt;

&lt;p&gt;What's worked for me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Describe the &lt;strong&gt;outcome&lt;/strong&gt;, not the stack. "An appointment booking app for a salon with SMS reminders," not "a Next.js app with a Postgres table."&lt;/li&gt;
&lt;li&gt;Review the &lt;strong&gt;data model first&lt;/strong&gt;, UI second. If the schema is wrong, every screen is wrong.&lt;/li&gt;
&lt;li&gt;Deliberately test the &lt;strong&gt;error paths&lt;/strong&gt; before the happy path. That's where generated code is thin.&lt;/li&gt;
&lt;li&gt;Ship behind &lt;strong&gt;previews&lt;/strong&gt;, keep &lt;strong&gt;snapshots&lt;/strong&gt;, and treat rollback as a normal operation, not an emergency.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;AI doesn't remove engineering judgment - it relocates it. You spend less time typing boilerplate and more time reviewing decisions: is this schema right, is this access check correct, what happens when this fails. That's a better use of the hours, but it's still engineering.&lt;/p&gt;

&lt;p&gt;If you want to try the describe-it-and-it-builds-it loop on a real full-stack app, with the backend and hosting handled for you, that's what &lt;a href="https://playcode.io/ai-website-builder" rel="noopener noreferrer"&gt;Playcode&lt;/a&gt; is built for. Either way: let the model write the boilerplate, and keep your judgment on the parts that decide whether the app actually works.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>fullstack</category>
    </item>
  </channel>
</rss>
