<?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: Timo Schmidt</title>
    <description>The latest articles on DEV Community by Timo Schmidt (@it-timo).</description>
    <link>https://dev.to/it-timo</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%2F3194642%2F180afc94-9652-4d5a-9905-994007efbae5.jpg</url>
      <title>DEV Community: Timo Schmidt</title>
      <link>https://dev.to/it-timo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/it-timo"/>
    <language>en</language>
    <item>
      <title>Why I Built goboot: A Developer-First Go Scaffolder That Actually Does Something</title>
      <dc:creator>Timo Schmidt</dc:creator>
      <pubDate>Fri, 23 May 2025 14:17:31 +0000</pubDate>
      <link>https://dev.to/it-timo/why-i-built-goboot-a-developer-first-go-scaffolder-that-actually-does-something-2ia3</link>
      <guid>https://dev.to/it-timo/why-i-built-goboot-a-developer-first-go-scaffolder-that-actually-does-something-2ia3</guid>
      <description>&lt;p&gt;When you start a Go project, you usually copy something old, grab a half-broken boilerplate, or stitch together folders until it “feels right.”&lt;/p&gt;

&lt;p&gt;But what if you had a clean, &lt;strong&gt;versioned starting point&lt;/strong&gt; — designed from day one to scale, evolve, and stay sane?&lt;/p&gt;

&lt;p&gt;That’s where &lt;code&gt;goboot&lt;/code&gt; comes in.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is &lt;code&gt;goboot&lt;/code&gt;?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/it-timo/goboot" rel="noopener noreferrer"&gt;&lt;code&gt;goboot&lt;/code&gt;&lt;/a&gt; is a deterministic scaffolding tool for Go projects.&lt;br&gt;&lt;br&gt;
Not a framework. Not a code dump.&lt;br&gt;&lt;br&gt;
Instead: a modular, developer-first CLI that grows clean Go projects in structured, maintainable layers.&lt;/p&gt;

&lt;p&gt;It’s designed for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OSS maintainers who care about hygiene&lt;/li&gt;
&lt;li&gt;Indie builders and backend devs who hate chaos&lt;/li&gt;
&lt;li&gt;Infrastructure/codegen projects that need reproducibility&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  &lt;code&gt;v0.0.0&lt;/code&gt; – Structured Bootstrap with Real Output
&lt;/h2&gt;

&lt;p&gt;The first public release is more than just layout:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CLI entrypoint: &lt;code&gt;goboot&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Working service system (&lt;code&gt;base_project&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Go &lt;code&gt;text/template&lt;/code&gt; rendering — both in &lt;strong&gt;paths and file content&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;A fully functional scaffold generator with placeholders and structure&lt;/li&gt;
&lt;li&gt;Full documentation: &lt;code&gt;README&lt;/code&gt;, &lt;code&gt;ROADMAP&lt;/code&gt;, &lt;code&gt;VERSIONING&lt;/code&gt;, ADRs, diagrams&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This means &lt;code&gt;goboot&lt;/code&gt; already &lt;strong&gt;does&lt;/strong&gt; something useful:&lt;br&gt;&lt;br&gt;
It can render a minimal project scaffold from a config, cleanly and reproducibly.&lt;/p&gt;


&lt;h2&gt;
  
  
  Design Principles
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Modular by default&lt;/strong&gt; (&lt;code&gt;cmd/&lt;/code&gt;, &lt;code&gt;pkg/&lt;/code&gt;, &lt;code&gt;configs/&lt;/code&gt;, &lt;code&gt;templates/&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deterministic output&lt;/strong&gt; — no random CLI magic&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Layered roadmap&lt;/strong&gt; with minimalism, security, and CI in mind&lt;/li&gt;
&lt;li&gt;No runtime reflection, no global state, no magic&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;It’s boring on purpose — so your projects don’t fall apart.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h2&gt;
  
  
  Roadmap Highlights
&lt;/h2&gt;

&lt;p&gt;Next milestones include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CI &amp;amp; lint/test automation&lt;/li&gt;
&lt;li&gt;Contributor workflows&lt;/li&gt;
&lt;li&gt;Docker support&lt;/li&gt;
&lt;li&gt;Template extension system&lt;/li&gt;
&lt;li&gt;Plugin-based generator logic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full roadmap: &lt;a href="https://github.com/it-timo/goboot/blob/main/ROADMAP.md" rel="noopener noreferrer"&gt;ROADMAP.md&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/it-timo/goboot.git
&lt;span class="nb"&gt;cd &lt;/span&gt;goboot
go run ./cmd/goboot/main.go
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;&lt;br&gt;
`&lt;/p&gt;

&lt;p&gt;This will invoke the &lt;code&gt;base_project&lt;/code&gt; service — rendering a basic project scaffold from templates using your config.&lt;/p&gt;


&lt;h2&gt;
  
  
  Follow Along
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/it-timo/goboot" rel="noopener noreferrer"&gt;Star the repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Join discussions or open issues&lt;/li&gt;
&lt;li&gt;Future releases will be added as comments below&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading —&lt;br&gt;
&lt;strong&gt;Timo&lt;/strong&gt;&lt;/p&gt;



&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/it-timo/goboot" rel="noopener noreferrer"&gt;https://github.com/it-timo/goboot&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;License:&lt;/strong&gt; MIT&lt;/p&gt;

&lt;p&gt;`&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>go</category>
      <category>opensource</category>
      <category>productivity</category>
      <category>cli</category>
    </item>
  </channel>
</rss>
