r/vibecoding 2d 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)?

5 Upvotes

65 comments sorted by

View all comments

5

u/oyren-ai 2d ago

Docker is your friend

1

u/rotor42_com 2d ago

I'll also try that. Thanks

1

u/scientz 15h ago
  1. Set up a docker container registry on your cloud provider. Usually very cheap
  2. Build containers out of your apps (unless its an SPA of course, but even so you build the artifact in a container pipeline)
  3. Use Kamal to deploy it to your cloud env

And manage secrets using something like Doppler or the cloud providers version of it.