<?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: HexanovaCore</title>
    <description>The latest articles on DEV Community by HexanovaCore (@hexanovacore).</description>
    <link>https://dev.to/hexanovacore</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%2F3958976%2Fcad5a509-350c-4342-b960-32d5fb3b03c4.jpg</url>
      <title>DEV Community: HexanovaCore</title>
      <link>https://dev.to/hexanovacore</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hexanovacore"/>
    <language>en</language>
    <item>
      <title>## Stop Wasting Time on Dev Setup — I Built a CLI That Automates Everything</title>
      <dc:creator>HexanovaCore</dc:creator>
      <pubDate>Sat, 30 May 2026 10:31:58 +0000</pubDate>
      <link>https://dev.to/hexanovacore/-stop-wasting-time-on-dev-setup-i-built-a-cli-that-automates-everything-2c93</link>
      <guid>https://dev.to/hexanovacore/-stop-wasting-time-on-dev-setup-i-built-a-cli-that-automates-everything-2c93</guid>
      <description>&lt;p&gt;One thing that has always bothered me as a developer is how much time gets wasted setting up new projects.&lt;/p&gt;

&lt;p&gt;Creating folders, configuring Docker, setting up VS Code, installing dependencies, creating boilerplate files...&lt;/p&gt;

&lt;p&gt;It's not difficult work, but it's repetitive.&lt;/p&gt;

&lt;p&gt;So I decided to build &lt;strong&gt;InstantDevSetup&lt;/strong&gt;, a CLI tool that automates the entire process.&lt;/p&gt;

&lt;p&gt;GitHub Repository:&lt;br&gt;
&lt;a href="https://github.com/HexanovaCore/InstantDevSetup" rel="noopener noreferrer"&gt;https://github.com/HexanovaCore/InstantDevSetup&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why InstantDevSetup?
&lt;/h2&gt;

&lt;p&gt;There are already tools that generate project scaffolds — but most of them stop at creating a basic folder structure.&lt;/p&gt;

&lt;p&gt;InstantDevSetup goes further.&lt;/p&gt;

&lt;p&gt;It doesn’t just create files, it creates a ready-to-run development environment.&lt;/p&gt;

&lt;p&gt;Most alternatives like cookiecutter or framework-based CLI tools still require manual configuration after setup — installing dependencies, configuring Docker, setting up VS Code, and wiring development workflows together.&lt;/p&gt;

&lt;p&gt;InstantDevSetup automates all of that in a single step.&lt;/p&gt;

&lt;p&gt;The key difference is environment completeness, not just project generation.&lt;/p&gt;

&lt;p&gt;With one command, you don’t get a skeleton — you get a working development stack including:&lt;/p&gt;

&lt;p&gt;Multi-stage Docker setup ready for production workflows&lt;br&gt;&lt;br&gt;
Preconfigured VS Code workspace optimized for the selected language&lt;br&gt;&lt;br&gt;
Dependency management already wired and initialized&lt;br&gt;&lt;br&gt;
Clean project architecture following best practices&lt;br&gt;&lt;br&gt;
Language-specific optimizations instead of generic templates  &lt;/p&gt;

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

&lt;p&gt;Not to generate a project you still need to configure —&lt;br&gt;&lt;br&gt;
but to give you a workspace where you can start coding immediately.&lt;/p&gt;

&lt;p&gt;In short, InstantDevSetup focuses on developer time elimination, not just boilerplate generation.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does it do?
&lt;/h2&gt;

&lt;p&gt;With a single command, InstantDevSetup can generate a production-ready development environment including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multi-stage Docker configurations&lt;/li&gt;
&lt;li&gt;VS Code workspace settings&lt;/li&gt;
&lt;li&gt;Dependency manifests&lt;/li&gt;
&lt;li&gt;Project structure and boilerplate files&lt;/li&gt;
&lt;li&gt;Language-specific setup&lt;/li&gt;
&lt;/ul&gt;

&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%2F0aorw2vbrslx8pvkvodx.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%2F0aorw2vbrslx8pvkvodx.png" alt="VS Code Explorer showing a generated Python project with Dockerfile, requirements.txt, virtual environment, and VS Code configuration files" width="283" height="640"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Supported Languages
&lt;/h2&gt;

&lt;p&gt;Currently the tool supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;Node.js&lt;/li&gt;
&lt;li&gt;TypeScript&lt;/li&gt;
&lt;li&gt;Go&lt;/li&gt;
&lt;li&gt;Rust&lt;/li&gt;
&lt;li&gt;Java&lt;/li&gt;
&lt;li&gt;.NET&lt;/li&gt;
&lt;li&gt;C++&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Example
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;smp init python

Or:

smp init rust
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&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%2Fh02tf7jw385dsj0ha956.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%2Fh02tf7jw385dsj0ha956.png" alt="Terminal output demonstrating successful execution of the SMP project initialization command for a Python project" width="800" height="376"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Within seconds you'll have a ready-to-use project structure instead of spending time on repetitive setup tasks.&lt;/p&gt;

&lt;p&gt;Why I Built It&lt;/p&gt;

&lt;p&gt;I wanted a tool that would let me go from:&lt;/p&gt;

&lt;p&gt;"New idea"&lt;/p&gt;

&lt;p&gt;to&lt;/p&gt;

&lt;p&gt;"Start coding"&lt;/p&gt;

&lt;p&gt;as quickly as possible.&lt;/p&gt;

&lt;p&gt;The goal isn't to replace existing tooling, but to remove the repetitive work that developers perform over and over again.&lt;/p&gt;

&lt;p&gt;Feedback&lt;/p&gt;

&lt;p&gt;The project is open source and still evolving.&lt;/p&gt;

&lt;p&gt;I'd love to hear feedback, feature requests, or suggestions from other developers.&lt;/p&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/HexanovaCore/InstantDevSetup" rel="noopener noreferrer"&gt;https://github.com/HexanovaCore/InstantDevSetup&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>ai</category>
      <category>python</category>
      <category>cli</category>
    </item>
  </channel>
</rss>
