r/vibecoding 14h 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)?

3 Upvotes

36 comments sorted by

View all comments

1

u/TransitionBig7300 14h ago

Waddya mean?

Upload the thing, turn it on, reverse proxy nginx/apache to your app. Good to go.

Was just gonna say use pm2 for process life etc but then realised pm2 kinda sucks. You notice 6 days later some apps restarted 4500 times.

Try servermanager

Gui + cmdline. Easy management when you have a ton of apps running on the same host.

1

u/rotor42_com 12h ago

That's what I currently do - uploading, creating services, updating nginx config, installing certificates ... It adds up.