<?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: nocklock</title>
    <description>The latest articles on DEV Community by nocklock (@nocklock).</description>
    <link>https://dev.to/nocklock</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%2F4134077%2Fc0409955-6d5a-4cd1-9812-e9e8d412bb41.png</url>
      <title>DEV Community: nocklock</title>
      <link>https://dev.to/nocklock</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nocklock"/>
    <language>en</language>
    <item>
      <title>I Built the MVP First. Then I Wrote the README.</title>
      <dc:creator>nocklock</dc:creator>
      <pubDate>Sun, 20 Sep 2026 12:51:48 +0000</pubDate>
      <link>https://dev.to/nocklock/i-built-the-mvp-first-then-i-wrote-the-readme-1be7</link>
      <guid>https://dev.to/nocklock/i-built-the-mvp-first-then-i-wrote-the-readme-1be7</guid>
      <description>&lt;p&gt;I did this in the wrong order.&lt;/p&gt;

&lt;p&gt;At least, that was my first thought.&lt;/p&gt;

&lt;p&gt;I was building a small project that checks images and documents for privacy risks. The backend came first, then the API, then a frontend that finally made it feel like an actual service.&lt;/p&gt;

&lt;p&gt;Somewhere along the way, I realized something.&lt;/p&gt;

&lt;p&gt;I had built quite a lot before properly organizing the requirements and documentation.&lt;/p&gt;

&lt;p&gt;Normally, I would expect the order to look more like this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;requirements → design → implementation → testing → documentation&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Mine looked closer to this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;build → break something → fix it → build more → test it → finally organize everything&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Not exactly textbook development.&lt;/p&gt;

&lt;p&gt;But writing the documentation afterwards turned out to be more useful than I expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  The README became a way to inspect the project
&lt;/h2&gt;

&lt;p&gt;At first, I thought I was just writing down what I had already built.&lt;/p&gt;

&lt;p&gt;Instead, I kept finding things that were unclear.&lt;/p&gt;

&lt;p&gt;What does this API actually guarantee?&lt;/p&gt;

&lt;p&gt;What configuration is required before running the project?&lt;/p&gt;

&lt;p&gt;What happens when an external dependency is unavailable?&lt;/p&gt;

&lt;p&gt;Which parts have actually been tested?&lt;/p&gt;

&lt;p&gt;Would someone other than me know how to start this project?&lt;/p&gt;

&lt;p&gt;These are simple questions.&lt;/p&gt;

&lt;p&gt;They become much harder to ignore when you have to explain the project in plain English.&lt;/p&gt;

&lt;p&gt;And that was probably the most useful part.&lt;/p&gt;

&lt;p&gt;Documentation stopped being something I needed to finish after development.&lt;/p&gt;

&lt;p&gt;It became another form of testing.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI made building faster, but that created a different problem
&lt;/h2&gt;

&lt;p&gt;I also used AI quite heavily while building.&lt;/p&gt;

&lt;p&gt;ChatGPT, Claude, and coding tools made it much easier to move from an idea to working code.&lt;/p&gt;

&lt;p&gt;That part was great.&lt;/p&gt;

&lt;p&gt;But faster implementation also meant I could move past decisions without really stopping to organize them.&lt;/p&gt;

&lt;p&gt;A configuration works, so I move on.&lt;/p&gt;

&lt;p&gt;An endpoint returns the right response, so I move on.&lt;/p&gt;

&lt;p&gt;Docker starts successfully, so I move on.&lt;/p&gt;

&lt;p&gt;Then deployment comes.&lt;/p&gt;

&lt;p&gt;Suddenly all the small things I skipped become visible again.&lt;/p&gt;

&lt;p&gt;Environment variables.&lt;/p&gt;

&lt;p&gt;Ports.&lt;/p&gt;

&lt;p&gt;Database configuration.&lt;/p&gt;

&lt;p&gt;Build commands.&lt;/p&gt;

&lt;p&gt;Health checks.&lt;/p&gt;

&lt;p&gt;Logs.&lt;/p&gt;

&lt;p&gt;Security settings.&lt;/p&gt;

&lt;p&gt;Things that looked like small details on localhost started feeling much more important once I tried to get the application outside my own machine.&lt;/p&gt;

&lt;p&gt;That was the point where I started thinking less about:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Does this code work?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;and more about:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Is this actually ready to leave localhost?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;There is a bigger difference between those two questions than I expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  A working MVP is not the same as a shippable MVP
&lt;/h2&gt;

&lt;p&gt;I used to think of an MVP mainly in terms of features.&lt;/p&gt;

&lt;p&gt;If the core function works, the MVP works.&lt;/p&gt;

&lt;p&gt;I still think that is partly true.&lt;/p&gt;

&lt;p&gt;But there is another stage after that.&lt;/p&gt;

&lt;p&gt;The application has to survive being run somewhere other than your laptop.&lt;/p&gt;

&lt;p&gt;Someone needs to know how to configure it.&lt;/p&gt;

&lt;p&gt;You need to know when it has failed.&lt;/p&gt;

&lt;p&gt;Secrets should not be sitting in the repository.&lt;/p&gt;

&lt;p&gt;The build should be reproducible.&lt;/p&gt;

&lt;p&gt;The production environment should not depend on something you happened to configure manually three days ago and already forgot about.&lt;/p&gt;

&lt;p&gt;None of these things are particularly exciting.&lt;/p&gt;

&lt;p&gt;They are also exactly the things I kept running into.&lt;/p&gt;

&lt;p&gt;So I started writing them down.&lt;/p&gt;

&lt;p&gt;Not as another tutorial.&lt;/p&gt;

&lt;p&gt;Just as a checklist I wanted for myself the next time I reached this stage.&lt;/p&gt;

&lt;h2&gt;
  
  
  That checklist became its own project
&lt;/h2&gt;

&lt;p&gt;Eventually those notes turned into &lt;strong&gt;Ship Your Spring Boot MVP&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I made a smaller Free Edition public on GitHub:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://github.com/nocklock-h/ship-your-spring-boot-mvp-free" rel="noopener noreferrer"&gt;Ship Your Spring Boot MVP — Free Edition&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It is a practical pre-launch checklist for Spring Boot MVPs.&lt;/p&gt;

&lt;p&gt;The idea is simple:&lt;/p&gt;

&lt;p&gt;before calling an MVP ready, go through the things that are easy to miss when most of your attention has been on making the feature work.&lt;/p&gt;

&lt;p&gt;I also ended up expanding those notes into a more detailed Full Edition with more checks, verification steps, deployment notes, and the things I wish I had organized earlier.&lt;/p&gt;

&lt;p&gt;I'm still preparing that version, so for now the Free Edition is the one I'm sharing publicly.&lt;/p&gt;

&lt;p&gt;I did not originally plan to make a product out of it.&lt;/p&gt;

&lt;p&gt;It came from repeatedly asking myself the same question while building:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What am I forgetting before I ship this?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  I still don't think building first is the correct order
&lt;/h2&gt;

&lt;p&gt;I would not turn this into advice like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Forget requirements. Just start coding.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That would be the wrong lesson.&lt;/p&gt;

&lt;p&gt;If anything, doing it backwards showed me why the earlier steps exist.&lt;/p&gt;

&lt;p&gt;But there was something valuable about documenting a project after I had actually struggled with it.&lt;/p&gt;

&lt;p&gt;The checklist was no longer theoretical.&lt;/p&gt;

&lt;p&gt;Every item reminded me of something I had needed, forgotten, broken, or had to go back and check.&lt;/p&gt;

&lt;p&gt;Maybe next time my process will be a little cleaner.&lt;/p&gt;

&lt;p&gt;Probably not perfectly clean.&lt;/p&gt;

&lt;p&gt;And that's fine.&lt;/p&gt;

&lt;p&gt;I'm still learning by making things.&lt;/p&gt;




&lt;p&gt;I keep more notes about development, AI tools, deployment, and the things that break along the way on the &lt;strong&gt;&lt;a href="https://nocklock.tistory.com/" rel="noopener noreferrer"&gt;Nocklock blog&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can also see the projects I'm building on &lt;strong&gt;&lt;a href="https://github.com/nocklock-h" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

</description>
      <category>java</category>
      <category>springboot</category>
      <category>devops</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
