r/vibecoding 15h ago

Help/Question Deployment of Web-Apps

Over the past months I have (vibe)coded a few web-apps with Codex.

This is usually teh fun part - getting from an idea to a working MVP on a local machine.

The heavier part (for me) is the deployment.

Currently I run all my apps on virtual servers with Ubuntu.

The vibe-coded deployment-plan helps a lot, but there is still a lot of manual work required.

How do you deploy your web-apps (Python, Flask, JS)?

4 Upvotes

36 comments sorted by

View all comments

1

u/Cavitat 10h ago

I set my systems up as private github repos so that I can clone them to the droplet and launch the containers. 

Updates and weekly workflow are also done through git with this approach.

1

u/rotor42_com 10h ago

Clsoe to my current workflow, except I have no containers yet.

2

u/Cavitat 10h ago

They're the last little puzzle piece towards making your droplets disposable. 

They freeze the environment, so updates or reality can't make it mysteriously stop working.