<?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: Subhanshu Mohan Gupta</title>
    <description>The latest articles on DEV Community by Subhanshu Mohan Gupta (@subhanshumg).</description>
    <link>https://dev.to/subhanshumg</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%2F739907%2Fb422d552-8150-456d-a78b-393485035b36.jpg</url>
      <title>DEV Community: Subhanshu Mohan Gupta</title>
      <link>https://dev.to/subhanshumg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/subhanshumg"/>
    <language>en</language>
    <item>
      <title>I got tired of re-wiring the same boilerplate on every project so I built ForgeKit</title>
      <dc:creator>Subhanshu Mohan Gupta</dc:creator>
      <pubDate>Tue, 24 Mar 2026 09:07:41 +0000</pubDate>
      <link>https://dev.to/subhanshumg/i-got-tired-of-re-wiring-the-same-boilerplate-on-every-project-so-i-built-forgekit-1pb5</link>
      <guid>https://dev.to/subhanshumg/i-got-tired-of-re-wiring-the-same-boilerplate-on-every-project-so-i-built-forgekit-1pb5</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.amazonaws.com%2Fuploads%2Farticles%2Fpm7yx7z3tubfunhvz0nx.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fpm7yx7z3tubfunhvz0nx.png" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;New project. Blank repo and here I am again, writing the same Dockerfile I wrote last month.&lt;br&gt;
Same GitHub Actions. Same ESLint config. Same docker-compose. Same test setup.&lt;/p&gt;

&lt;p&gt;I've done this so many times I could do it in my sleep. Which is exactly why I stopped doing it.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;ForgeKit&lt;/strong&gt;. Run one command and your project is production-ready before you've had your first coffee.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; forgekit-cli
forgekit new my-app &lt;span class="nt"&gt;--template&lt;/span&gt; web-app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;13 files. TypeScript configured. ESLint ready. Dockerfile written. docker-compose working. GitHub Actions running on your first push. Vitest set up. Nothing left to wire.&lt;/p&gt;

&lt;p&gt;You write code. Not config.&lt;/p&gt;


&lt;h2&gt;
  
  
  What's included
&lt;/h2&gt;


&lt;div class="ltag-features"&gt;
  &lt;div class="ltag-feature"&gt;
  &lt;div class="ltag-feature__content"&gt;
    &lt;div class="ltag-feature__title"&gt;⚡ CI/CD from commit one&lt;/div&gt;
    &lt;div class="ltag-feature__body"&gt;

      &lt;p&gt;GitHub Actions wired and passing before you even open a PR.&lt;/p&gt;


    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class="ltag-feature"&gt;
  &lt;div class="ltag-feature__content"&gt;
    &lt;div class="ltag-feature__title"&gt;📦 Docker, done&lt;/div&gt;
    &lt;div class="ltag-feature__body"&gt;

      &lt;p&gt;Dockerfile and docker-compose ready to run locally and in prod.&lt;/p&gt;


    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class="ltag-feature"&gt;
  &lt;div class="ltag-feature__content"&gt;
    &lt;div class="ltag-feature__title"&gt;✅ Tests configured&lt;/div&gt;
    &lt;div class="ltag-feature__body"&gt;

      &lt;p&gt;Vitest is set up. You just write the tests.&lt;/p&gt;


    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class="ltag-feature"&gt;
  &lt;div class="ltag-feature__content"&gt;
    &lt;div class="ltag-feature__title"&gt;📋 6 battle-tested templates&lt;/div&gt;
    &lt;div class="ltag-feature__body"&gt;

      &lt;p&gt;Next.js, FastAPI, Go, ML pipeline, Serverless, and more.&lt;/p&gt;


    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;/div&gt;
&lt;br&gt;


&lt;h2&gt;
  
  
  Pick your stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;web-app&lt;/strong&gt;: Node.js + React + TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;api-service&lt;/strong&gt;: Python + FastAPI + PostgreSQL + Docker&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ml-pipeline&lt;/strong&gt;: Python + Jupyter + MLflow&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;next-app&lt;/strong&gt;: Next.js + Tailwind + TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;go-api&lt;/strong&gt;: Go + Gin + PostgreSQL&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;serverless&lt;/strong&gt;: AWS Lambda + TypeScript&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  "Can't I just clone a starter template?"
&lt;/h2&gt;

&lt;p&gt;A starter template gives you files. ForgeKit gives you a working engineering setup. CI runs on push. Docker builds locally. Linting catches issues before they hit your PR. Security scanning runs automatically.&lt;/p&gt;

&lt;p&gt;The first time you &lt;code&gt;git push&lt;/code&gt; on a ForgeKit project, everything just works.&lt;/p&gt;




&lt;h2&gt;
  
  
  Open source, Apache 2.0
&lt;/h2&gt;

&lt;p&gt;Fork it. Extend it. Add your own templates. Build on it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/SubhanshuMG/ForgeKit" class="crayons-btn crayons-btn--primary" rel="noopener noreferrer"&gt;Star on GitHub ⭐&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.npmjs.com/package/forgekit-cli" class="crayons-btn crayons-btn--primary" rel="noopener noreferrer"&gt;View on npm 📦&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;&lt;a href="https://forgekit.build" class="crayons-btn crayons-btn--primary" rel="noopener noreferrer"&gt;Visit forgekit.build&lt;/a&gt;
&lt;/p&gt;




&lt;p&gt;What stack do you want a template for next? Drop it in the comments.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>cli</category>
      <category>typescript</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
