Ask HN: How do you host your vibe coded tools/sites?
1–10 of 11 posts
Re: Ask HN: How do you host your vibe coded tools/sites?
#2Re: Ask HN: How do you host your vibe coded tools/sites?
#3Re: Ask HN: How do you host your vibe coded tools/sites?
#4I use Netlify connected to Github/Gitlab, which does a build on every commit to the main branch. For low-volume static sites (which all of mine are) this is free, fast, and convenient.
Re: Ask HN: How do you host your vibe coded tools/sites?
#5Re: Ask HN: How do you host your vibe coded tools/sites?
#6I use Netlify connected to Github/Gitlab, which does a build on every commit to the main branch. For low-volume static sites (which all of mine are) this is free, fast, and convenient.
what about something with a db? or auth?
It's totally hack-a-licious but it also totally works for my N<10 users.
Re: Ask HN: How do you host your vibe coded tools/sites?
#7Earlier quoted context omitted.
what about something with a db? or auth?
I'm actually using Github issues as a low-volume/high-latency DB for a project right now. I use a Netlify function to do extremely simple auth and then open an issue on Github, which triggers a CI action, which appends to a .jsonl file in the repo (different branch), which triggers a Netlify build, which then serves the new jsonl file. (If the repo were public, this wouldn't even have to trigger a rebuild of the webs…
Re: Ask HN: How do you host your vibe coded tools/sites?
#8Re: Ask HN: How do you host your vibe coded tools/sites?
#9Earlier quoted context omitted.
I'm actually using Github issues as a low-volume/high-latency DB for a project right now. I use a Netlify function to do extremely simple auth and then open an issue on Github, which triggers a CI action, which appends to a .jsonl file in the repo (different branch), which triggers a Netlify build, which then serves the new jsonl file. (If the repo were public, this wouldn't even have to trigger a rebuild of the webs…
Wow that's super cool and creative. I assume this is an internal dev tool?