<?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: The One-Man Framework</title>
    <description>The latest articles on DEV Community by The One-Man Framework (@onemanframework).</description>
    <link>https://dev.to/onemanframework</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3916104%2F8d0bb96d-705a-4f93-b66f-126c9de27e71.png</url>
      <title>DEV Community: The One-Man Framework</title>
      <link>https://dev.to/onemanframework</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/onemanframework"/>
    <language>en</language>
    <item>
      <title>Why Rails 8 is the Only Choice for the Modern Solopreneur</title>
      <dc:creator>The One-Man Framework</dc:creator>
      <pubDate>Mon, 18 May 2026 22:06:26 +0000</pubDate>
      <link>https://dev.to/onemanframework/why-rails-8-is-the-only-choice-for-the-modern-solopreneur-8ai</link>
      <guid>https://dev.to/onemanframework/why-rails-8-is-the-only-choice-for-the-modern-solopreneur-8ai</guid>
      <description>&lt;p&gt;In the world of startups, there is a dangerous myth. People think that to build a "real" application, you need a team of five: a frontend expert, a backend specialist, a database admin, a DevOps engineer, and a designer. &lt;/p&gt;

&lt;p&gt;If you follow this path as a solo developer, you will fail. You will spend all your time trying to glue different technologies together instead of talking to customers.&lt;/p&gt;

&lt;p&gt;In 2026, the goal isn't to write the "fastest" code in terms of CPU cycles. The goal is &lt;strong&gt;Developer Velocity&lt;/strong&gt;. You need a framework that handles the boring stuff so you can focus on the features. &lt;/p&gt;

&lt;p&gt;After trying everything from Next.js to Go, I am convinced that &lt;strong&gt;Ruby on Rails 8&lt;/strong&gt; is the best framework for a one-man team. Here is why.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. The Death of the "Infrastructure Tax"
&lt;/h2&gt;

&lt;p&gt;For years, even a simple Rails app needed a lot of "extra" stuff to run in production. You needed Redis for background jobs, Redis for caching, and usually a Node.js server to compile your JavaScript.&lt;/p&gt;

&lt;p&gt;Rails 8 has completely removed this "tax." With the &lt;strong&gt;Solid Trilogy&lt;/strong&gt;, your entire stack is now just your app and your database (Postgres or SQLite).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Solid Queue:&lt;/strong&gt; Your background jobs live in your DB. No Redis needed.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Solid Cache:&lt;/strong&gt; Your HTML caching lives in your DB. No Redis needed.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Solid Cable:&lt;/strong&gt; Your WebSockets live in your DB. No Redis needed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For a solo dev, this is huge. It means your production server is simpler, cheaper, and much easier to debug.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. No-Build Frontend (The Hotwire Revolution)
&lt;/h2&gt;

&lt;p&gt;I used to spend half my day fighting with &lt;code&gt;npm&lt;/code&gt;, &lt;code&gt;webpack&lt;/code&gt;, and &lt;code&gt;node_modules&lt;/code&gt;. It was exhausting. &lt;/p&gt;

&lt;p&gt;Rails 8 uses &lt;strong&gt;Importmaps&lt;/strong&gt; and &lt;strong&gt;Hotwire&lt;/strong&gt; by default. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;No Build Step:&lt;/strong&gt; You save a file, refresh the browser, and it’s there. You don't need a heavy compilation process.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Turbo 8 Morphing:&lt;/strong&gt; You get the speed of a React Single Page App (SPA) but you write 100% Ruby code. The browser is now smart enough to update the page without a full reload.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can build a fast, reactive dashboard in an afternoon that would take a React developer a week to wire up.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Deployment is Solved (Kamal 2)
&lt;/h2&gt;

&lt;p&gt;Deployment used to be the scariest part for solo developers. You either paid $100/month for a "managed" service like Heroku, or you spent days configuration Nginx and SSL on a raw Linux box.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Kamal 2&lt;/strong&gt; changed everything. It allows you to deploy a Dockerized Rails app to a $5 Hetzner or DigitalOcean VPS with one command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;kamal deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It handles the SSL certificates, the zero-downtime switching, and the health checks. You get the power of a private cloud for the price of a sandwich.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. The "Editor-in-Chief" Workflow (AI Readiness)
&lt;/h2&gt;

&lt;p&gt;As I’ve written before, we are in the era of &lt;strong&gt;Vibe Coding&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;Because Rails is built on &lt;strong&gt;Convention over Configuration&lt;/strong&gt;, it is the perfect partner for AI tools like Cursor or ChatGPT. Because every Rails app follows the same folder structure, the AI rarely makes mistakes. &lt;/p&gt;

&lt;p&gt;If you tell an AI: &lt;em&gt;"Add a billing system with a 'Pro' and 'Basic' plan,"&lt;/em&gt; the AI knows exactly where the models, controllers, and views go. In a "flexible" framework like Express or FastAPI, the AI often gets lost. In Rails, it is a superpower.&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary: The Math for the Solo Dev
&lt;/h2&gt;

&lt;p&gt;As a one-man team, you have 40 hours a week.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Framework A (JS/Microservices):&lt;/strong&gt; 20 hours on plumbing, 10 hours on CSS, 10 hours on features.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Rails 8:&lt;/strong&gt; 2 hours on plumbing, 8 hours on CSS, 30 hours on features.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The choice is obvious. Rails 8 is the only framework that truly respects your time. It is designed to let one person build an empire.&lt;/p&gt;

</description>
      <category>rails</category>
      <category>startup</category>
      <category>productivity</category>
      <category>career</category>
    </item>
    <item>
      <title>Goodbye Nginx and Redis: Building a Zero-Service Monolith in Rails 8</title>
      <dc:creator>The One-Man Framework</dc:creator>
      <pubDate>Mon, 18 May 2026 16:08:35 +0000</pubDate>
      <link>https://dev.to/onemanframework/goodbye-nginx-and-redis-building-a-zero-service-monolith-in-rails-8-3k8l</link>
      <guid>https://dev.to/onemanframework/goodbye-nginx-and-redis-building-a-zero-service-monolith-in-rails-8-3k8l</guid>
      <description>&lt;h1&gt;
  
  
  The "Zero-Service" Monolith: How to run your entire app on a single server port
&lt;/h1&gt;

&lt;p&gt;For years, I believed that a professional Rails app needed a small army of services to survive in production. You couldn't just run Rails. You needed Nginx to handle SSL and assets, Redis to handle background jobs and caching, and maybe a separate load balancer.&lt;/p&gt;

&lt;p&gt;As a solo developer, managing all these pieces is exhausting. Every new service is another thing that can crash, another version to update, and another port to secure.&lt;/p&gt;

&lt;p&gt;With &lt;strong&gt;Rails 8&lt;/strong&gt;, we are entering the era of the &lt;strong&gt;"Zero-Service" Monolith&lt;/strong&gt;. The goal is simple: your entire application should live inside a single Docker container and communicate with the world through one single port. No Redis, no Nginx, no headaches.&lt;/p&gt;

&lt;p&gt;Here is how to collapse your stack into a single, powerful unit.&lt;/p&gt;

&lt;h2&gt;
  
  
  STEP 1: The "Solid" Trilogy (Deleting Redis)
&lt;/h2&gt;

&lt;p&gt;In the past, Redis was mandatory for two things: background jobs (Sidekiq) and caching. &lt;/p&gt;

&lt;p&gt;Rails 8 replaces Redis with the "Solid" gems. These tools use your existing database (Postgres, MySQL, or SQLite) to do the work that Redis used to do.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Solid Queue:&lt;/strong&gt; Handles your background jobs.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Solid Cache:&lt;/strong&gt; Handles your HTML fragment caching.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Solid Cable:&lt;/strong&gt; Handles your real-time WebSockets.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By switching to these, you can literally uninstall Redis from your server. Your background jobs now have the same "ACID" guarantees as your data, and you have one less service to monitor.&lt;/p&gt;

&lt;h2&gt;
  
  
  STEP 2: Thruster (Deleting Nginx)
&lt;/h2&gt;

&lt;p&gt;Puma (the Rails web server) is great at running Ruby, but it isn't great at serving images or handling SSL certificates. That is why we always put Nginx in front of it.&lt;/p&gt;

&lt;p&gt;Rails 8 includes a new tool called &lt;strong&gt;Thruster&lt;/strong&gt;. It is a tiny, incredibly fast proxy written in Go that wraps around your Rails app.&lt;/p&gt;

&lt;p&gt;Thruster handles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;HTTP/2:&lt;/strong&gt; Speeds up loading for your users.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;SSL (HTTPS):&lt;/strong&gt; It manages your Let's Encrypt certificates automatically.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Asset Compression:&lt;/strong&gt; It Gzips your CSS and JS files so they download faster.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because Thruster is bundled into the Rails Docker image, you don't need to install or configure Nginx on your server anymore. You just point your domain to the container, and Thruster handles the rest.&lt;/p&gt;

&lt;h2&gt;
  
  
  STEP 3: The Single-Port Configuration
&lt;/h2&gt;

&lt;p&gt;When you use &lt;strong&gt;Kamal 2&lt;/strong&gt; to deploy your Rails 8 app, it packages everything into one container. &lt;/p&gt;

&lt;p&gt;In your &lt;code&gt;deploy.yml&lt;/code&gt;, you no longer have to define "Sidecars" for Nginx or link to a Redis container. You just define your web server.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="c1"&gt;# config/deploy.yml&lt;/span&gt;
&lt;span class="na"&gt;service&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;my-app&lt;/span&gt;
&lt;span class="na"&gt;image&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;yourname/my-app&lt;/span&gt;

&lt;span class="na"&gt;servers&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;web&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;123.45.67.89&lt;/span&gt;

&lt;span class="na"&gt;proxy&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;ssl&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
  &lt;span class="na"&gt;host&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;myapp.com&lt;/span&gt;
  &lt;span class="c1"&gt;# Everything enters through port 80/443 and goes straight &lt;/span&gt;
  &lt;span class="c1"&gt;# to Thruster inside the container.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When this container starts up, it boots Thruster, which boots Puma, which starts the background job workers. Every part of your app is now living in the same memory space, on the same timeline.&lt;/p&gt;

&lt;h2&gt;
  
  
  STEP 4: SQLite for the Win (Optional)
&lt;/h2&gt;

&lt;p&gt;If you want to go for the "Ultimate Zero-Service" setup for a micro-SaaS or a side project, you can even skip the external Database server by using &lt;strong&gt;SQLite&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;With the recent improvements in Rails 8, SQLite is production-ready for many use cases. If you use SQLite, your "database" is just a file inside your container. Combined with &lt;strong&gt;Litestream&lt;/strong&gt; for backups, your entire "Cloud Empire" is now literally just one single Docker process running on a $5 VPS.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this is a game changer for you
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Mental Bandwidth:&lt;/strong&gt; You only have to think about one thing. Is the container running? If yes, the whole app is working.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Cheaper Hosting:&lt;/strong&gt; You don't need a server with 16GB of RAM to run 5 different services. A small, cheap server is plenty.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Faster Onboarding:&lt;/strong&gt; When you hire a freelancer or use an AI to help you, they don't have to spend two hours setting up a complex local environment. They just run the app.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;The "Zero-Service" Monolith isn't about being lazy; it's about being &lt;strong&gt;efficient&lt;/strong&gt;. As a solo developer, every minute you spend configuring a Redis config file is a minute you aren't building features for your customers.&lt;/p&gt;

&lt;p&gt;Rails 8 and Kamal 2 have made it possible to own your infrastructure without being a DevOps expert. One container, one port, one successful business.&lt;/p&gt;

</description>
      <category>rails</category>
      <category>devops</category>
      <category>architecture</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
