DEV Community

Cover image for We Built for 36 Hours. Publishing Took One Command.
zhenqiang
zhenqiang

Posted on

We Built for 36 Hours. Publishing Took One Command.

This is the first post in a short series about shipping small, fast-moving web projects.

Over the next two posts, I’ll explore:

  • Why not every project needs a full deployment pipeline
  • And what a lightweight publish workflow can look like in practice

Let’s start with a simple (hypothetical) scenario.


Imagine This

You’re at a hackathon.

You’ve spent 36 hours building something that works perfectly on your machine.

There are 15 minutes left before submission.

And you don’t have a public link.


The Project

In this scenario, the project was DevLog AI — a small frontend tool that turns messy Git commit history into clean release notes.

It was:

  • Static
  • Self-contained
  • A single index.html
  • No backend
  • No environment variables

Just a submission page and a demo.


The Friction

Even for something this small, the typical path to publishing often looks like:

  • Push to GitHub
  • Trigger a build
  • Wait
  • Verify
  • Fix
  • Re-deploy

Nothing dramatic.

Just overhead.

And in the final minutes of a hackathon, overhead matters.


What Happened Instead

Inside the project folder:

/myvibe-publish
Enter fullscreen mode Exit fullscreen mode

No configuration.

No dashboard.

No pipeline setup.


Seconds Later

🚀 Published successfully!
🌍 https://www.myvibe.so/zhenqiang-zhang/devlog-ai
Enter fullscreen mode Exit fullscreen mode

You can see the live demo page here: https://www.myvibe.so/zhenqiang-zhang/devlog-ai

(Actual time varies with project size and network conditions.)

The link was live.

Submission done.

Time saved for improving the demo — not debugging deployment.


Why This Is the Starting Point

The project took:

36 hours to build.

Publishing took:

one command.

Not because deployment is trivial.

But because the project was simple — and the workflow matched the context.

In the next post, we’ll zoom out and ask:

Does every project really need a deployment pipeline?


Series: Shipping Small Projects

Top comments (1)

Collapse
 
nate_gu profile image
NateGu ⚡ vibe coder

This is a very useful skills!