<?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: Martin Binder</title>
    <description>The latest articles on DEV Community by Martin Binder (@bndrmrtn).</description>
    <link>https://dev.to/bndrmrtn</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%2F1001121%2F06949bad-d089-4c73-9934-f5b5dba898be.jpeg</url>
      <title>DEV Community: Martin Binder</title>
      <link>https://dev.to/bndrmrtn</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bndrmrtn"/>
    <language>en</language>
    <item>
      <title>I built Scrib.ee — a fast blogging platform with Go, Nuxt, Caddy and Docker.</title>
      <dc:creator>Martin Binder</dc:creator>
      <pubDate>Thu, 09 Jul 2026 20:47:34 +0000</pubDate>
      <link>https://dev.to/bndrmrtn/i-built-scribee-a-fast-blogging-platform-with-go-nuxt-caddy-and-docker-3c1</link>
      <guid>https://dev.to/bndrmrtn/i-built-scribee-a-fast-blogging-platform-with-go-nuxt-caddy-and-docker-3c1</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9e004ynogl1opk5f84a6.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9e004ynogl1opk5f84a6.webp" alt="Scrib.ee screenshot" width="800" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey everyone 👋&lt;/p&gt;

&lt;p&gt;I’m Martin, a full-stack developer from Hungary.&lt;/p&gt;

&lt;p&gt;I’ve been working on &lt;strong&gt;Scrib.ee&lt;/strong&gt;, a clean and fast blogging platform for people who want to publish without fighting setup, themes, hosting, or plugins.&lt;/p&gt;

&lt;p&gt;The goal is simple: make blogging feel simple again.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Blogging platforms often feel too complicated.&lt;/p&gt;

&lt;p&gt;Some are too heavy.&lt;br&gt;&lt;br&gt;
Some are too technical.&lt;br&gt;&lt;br&gt;
Some are too focused on newsletters.&lt;br&gt;&lt;br&gt;
Some make you spend more time configuring things than actually writing.&lt;/p&gt;

&lt;p&gt;I wanted to build something focused:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;create a blog&lt;/li&gt;
&lt;li&gt;write posts&lt;/li&gt;
&lt;li&gt;publish&lt;/li&gt;
&lt;li&gt;customize the look&lt;/li&gt;
&lt;li&gt;have SEO basics ready from the start&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it.&lt;/p&gt;
&lt;h2&gt;
  
  
  What Scrib.ee does
&lt;/h2&gt;

&lt;p&gt;Scrib.ee gives users a dashboard where they can manage their blog, write posts, customize themes, and publish content.&lt;/p&gt;

&lt;p&gt;Each blog has its own public frontend, so the writing/admin experience and the reader experience are separated.&lt;/p&gt;

&lt;p&gt;The platform supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;blog creation&lt;/li&gt;
&lt;li&gt;post writing&lt;/li&gt;
&lt;li&gt;Markdown-based content&lt;/li&gt;
&lt;li&gt;multiple blog formats&lt;/li&gt;
&lt;li&gt;SEO-ready pages&lt;/li&gt;
&lt;li&gt;sitemap generation&lt;/li&gt;
&lt;li&gt;custom themes using CSS variables&lt;/li&gt;
&lt;li&gt;caching&lt;/li&gt;
&lt;li&gt;subdomain-based blogs&lt;/li&gt;
&lt;li&gt;AI-guided reading with Cleo&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  AI without the bloat
&lt;/h2&gt;

&lt;p&gt;Scrib.ee also includes &lt;strong&gt;Cleo&lt;/strong&gt;, an AI reading assistant inside blog posts.&lt;/p&gt;

&lt;p&gt;But I don’t want Scrib.ee to become another AI content generator.&lt;/p&gt;

&lt;p&gt;The goal is not to generate endless content.&lt;/p&gt;

&lt;p&gt;I want AI to help only where it is actually useful: helping readers understand posts better, asking questions about the article, and getting more value from what they are already reading.&lt;/p&gt;
&lt;h2&gt;
  
  
  Tech stack
&lt;/h2&gt;

&lt;p&gt;The current stack is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go backend&lt;/li&gt;
&lt;li&gt;Nuxt dashboard&lt;/li&gt;
&lt;li&gt;Nuxt blog frontend&lt;/li&gt;
&lt;li&gt;Caddy reverse proxy&lt;/li&gt;
&lt;li&gt;Docker&lt;/li&gt;
&lt;li&gt;Docker Compose&lt;/li&gt;
&lt;li&gt;MySQL&lt;/li&gt;
&lt;li&gt;Redis&lt;/li&gt;
&lt;li&gt;Meilisearch&lt;/li&gt;
&lt;li&gt;GitHub Actions CI/CD&lt;/li&gt;
&lt;li&gt;VPS deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The app is split into multiple services:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;app/
├── server/        # Go API
├── client/        # Nuxt dashboard
├── blogclient/    # Nuxt public blog frontend
├── sitemap/       # XML sitemap generator
├── dbadmin/       # database admin utility
└── docker/
    └── caddy/     # reverse proxy and routing
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;

&lt;p&gt;Scrib.ee has one main Go API and two Nuxt frontends.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;client&lt;/code&gt; app is the dashboard where users manage their blog.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;blogclient&lt;/code&gt; app renders the public blogs.&lt;/p&gt;

&lt;p&gt;Both frontends talk to the same Go backend.&lt;/p&gt;

&lt;p&gt;Caddy sits in front of everything and handles routing, domains, subdomains, and HTTPS.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User
  ↓
Caddy
  ↓
 ┌──────────────┬────────────────┐
 │ Dashboard    │ Public Blogs    │
 │ Nuxt client  │ Nuxt blogclient │
 └──────┬───────┴───────┬────────┘
        ↓               ↓
             Go API
        ↓       ↓       ↓
      MySQL   Redis   Meilisearch
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Docker-native deployment
&lt;/h2&gt;

&lt;p&gt;Everything runs with Docker and Docker Compose.&lt;/p&gt;

&lt;p&gt;For production, I can start the app with:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker compose up &lt;span class="nt"&gt;-d&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For development, I use a separate compose file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;make dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Makefile also includes commands for common tasks:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight make"&gt;&lt;code&gt;&lt;span class="nl"&gt;env&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;cp&lt;/span&gt; &lt;span class="nt"&gt;-n&lt;/span&gt; .env.example .env &lt;span class="o"&gt;||&lt;/span&gt; &lt;span class="nb"&gt;true&lt;/span&gt;

&lt;span class="nl"&gt;dev&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;docker compose &lt;span class="nt"&gt;-f&lt;/span&gt; compose-dev.yaml up &lt;span class="nt"&gt;--build&lt;/span&gt;

&lt;span class="nl"&gt;prod&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;docker compose up &lt;span class="nt"&gt;-d&lt;/span&gt;

&lt;span class="nl"&gt;deploy&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;git pull origin main
    &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nv"&gt;APP_ENV&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;prod docker compose up &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="nt"&gt;--build&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;docker compose &lt;span class="nb"&gt;exec &lt;/span&gt;sitemap ./sitemap-worker generate
    &lt;span class="p"&gt;@&lt;/span&gt;docker image prune &lt;span class="nt"&gt;-f&lt;/span&gt;

&lt;span class="nl"&gt;logs&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;docker compose logs &lt;span class="nt"&gt;-f&lt;/span&gt; &lt;span class="p"&gt;$(&lt;/span&gt;SERVICE&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="nl"&gt;ps&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;docker compose ps

&lt;span class="nl"&gt;down&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;docker compose down

&lt;span class="nl"&gt;test&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;go &lt;span class="nb"&gt;test&lt;/span&gt; &lt;span class="nt"&gt;-C&lt;/span&gt; ./server ./...

&lt;span class="nl"&gt;lint&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ./server &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; golangci-lint run

&lt;span class="nl"&gt;fmt&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ./server &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; go &lt;span class="nb"&gt;fmt&lt;/span&gt;
    &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ./client &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; pnpm run format
    &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ./blogclient &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; pnpm run format
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  CI/CD with GitHub Actions
&lt;/h2&gt;

&lt;p&gt;I use GitHub Actions to build and push Docker images to GitHub Container Registry.&lt;/p&gt;

&lt;p&gt;The workflow checks which folders changed and only rebuilds the affected services.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;changes in &lt;code&gt;server/**&lt;/code&gt; rebuild the Go API&lt;/li&gt;
&lt;li&gt;changes in &lt;code&gt;client/**&lt;/code&gt; rebuild the dashboard&lt;/li&gt;
&lt;li&gt;changes in &lt;code&gt;blogclient/**&lt;/code&gt; rebuild the public blog frontend&lt;/li&gt;
&lt;li&gt;changes in &lt;code&gt;sitemap/**&lt;/code&gt; rebuild the sitemap service&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is also a manual &lt;code&gt;force_rebuild&lt;/code&gt; option if I want to rebuild everything from scratch.&lt;/p&gt;

&lt;p&gt;After the images are built, the workflow connects to my VPS over SSH and runs:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /srv/app
git pull
docker compose pull
&lt;span class="nv"&gt;APP_ENV&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;prod &lt;span class="nv"&gt;APP_VERSION&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&amp;lt;short-sha&amp;gt; docker compose up &lt;span class="nt"&gt;-d&lt;/span&gt;
docker image prune &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="nt"&gt;-f&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It is simple, but it works well for a bootstrapped project.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEO and sitemaps
&lt;/h2&gt;

&lt;p&gt;SEO is an important part of Scrib.ee.&lt;/p&gt;

&lt;p&gt;Each blog can generate its own sitemap. The sitemap service is written in Go and creates XML sitemap files for published posts and tags.&lt;/p&gt;

&lt;p&gt;It supports splitting large sitemaps into multiple files, using the standard limit of 50,000 URLs per file.&lt;/p&gt;

&lt;p&gt;A simplified version looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight go"&gt;&lt;code&gt;&lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="n"&gt;maxURLsPerFile&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="m"&gt;50000&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For each blog with sitemap enabled, the service:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;loads the blog domain or subdomain&lt;/li&gt;
&lt;li&gt;fetches published posts&lt;/li&gt;
&lt;li&gt;fetches tags&lt;/li&gt;
&lt;li&gt;writes sitemap XML files&lt;/li&gt;
&lt;li&gt;writes a sitemap index&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The generated URLs include posts like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://scrib.ee/posts/my-post
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And topics like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://scrib.ee/topic/go
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Themes with CSS variables
&lt;/h2&gt;

&lt;p&gt;For blog customization, I use CSS variables.&lt;/p&gt;

&lt;p&gt;This keeps themes simple and flexible without needing a complex theme engine.&lt;/p&gt;

&lt;p&gt;A blog can have different colors, styles, and visual settings, while the frontend still stays fast and maintainable.&lt;/p&gt;

&lt;p&gt;The goal is to let users customize their blog without turning Scrib.ee into a huge website builder.&lt;/p&gt;

&lt;h2&gt;
  
  
  Local development
&lt;/h2&gt;

&lt;p&gt;For local development, Scrib.ee uses subdomain-based routing.&lt;/p&gt;

&lt;p&gt;I add local domains to &lt;code&gt;/etc/hosts&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;127.0.0.1   scribee.local
127.0.0.1   watches.scribee.local blog.scribee.local
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then I can open:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://scribee.local
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;for the dashboard, and:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://watches.scribee.local
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;for a local test blog.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current stage
&lt;/h2&gt;

&lt;p&gt;Scrib.ee is still early, but already has the main structure working:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;dashboard&lt;/li&gt;
&lt;li&gt;public blog frontend&lt;/li&gt;
&lt;li&gt;Go backend&lt;/li&gt;
&lt;li&gt;Docker deployment&lt;/li&gt;
&lt;li&gt;CI/CD&lt;/li&gt;
&lt;li&gt;sitemap generation&lt;/li&gt;
&lt;li&gt;caching&lt;/li&gt;
&lt;li&gt;themes&lt;/li&gt;
&lt;li&gt;Markdown posts&lt;/li&gt;
&lt;li&gt;Cleo AI reading assistant&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m preparing for a bigger launch later, but first I want to collect feedback from developers, creators, bloggers, and indie makers.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I would love feedback on
&lt;/h2&gt;

&lt;p&gt;I would really appreciate feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the idea&lt;/li&gt;
&lt;li&gt;the technical architecture&lt;/li&gt;
&lt;li&gt;the UX&lt;/li&gt;
&lt;li&gt;the positioning&lt;/li&gt;
&lt;li&gt;the SEO features&lt;/li&gt;
&lt;li&gt;the AI reading assistant&lt;/li&gt;
&lt;li&gt;what would make you use a blogging platform today&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final thoughts
&lt;/h2&gt;

&lt;p&gt;I don’t want Scrib.ee to become a bloated website builder or another AI content machine.&lt;/p&gt;

&lt;p&gt;I want it to be a clean, fast place where people can write, publish, and share ideas — with AI used only where it actually helps the reader.&lt;/p&gt;

&lt;p&gt;Thanks for reading.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>go</category>
      <category>nuxt</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
