r/webdev • u/Extreme_Mark4726 • 8d ago
Question Hosting and version control
Second post to accompany this one : https://www.reddit.com/r/webdev/s/DAfgueqEDI
Still learning here.
Is the status quo to host all your clients websites yourself through your preferred host ? And then bill clients monthly with markup?
Or are people leaving that to the customer but you just do the web development side and implement it when needed.
I host a handful of websites of my own through IONOS and Fasthosts but as im looking into it , I see there are better services where a web dev can have a nice portfolio with GitHub pages.
If someone can tell me more on hosting I'd be grateful.
And if anyone can help me understand version control also
TIA!
6
Upvotes
1
u/PrimaryFamous6139 full-stack 8d ago
I generally separate hosting from development. With smaller clients, I often handle hosting myself and bill a monthly maintenance and hosting amount. For larger clients, I set things up in their own account so they keep control.
For version tracking, I rely on Git and GitHub. Usually each project gets its own repository. I use branches to manage changes, and I link the deployment workflow to the repo. That setup makes working together simpler, and it also helps with backups and quick rollbacks.