Ask HN: What is the cheapest way to make a website?
61–70 of 99 posts
Re: Ask HN: What is the cheapest way to make a website?
#62[1]: https://smocker.dev/
Re: Ask HN: What is the cheapest way to make a website?
#63Managed Wordpress hosting is $4-$6/m from a reputable place[1], and then everything wordpress and below needs no maintenance. Youll have access control for which team members can control what, and there's probably more wordpress expertise out there than any other platform. The amount of good plugins out there minimize reinventing wheels.
Re: Ask HN: What is the cheapest way to make a website?
#64Re: Ask HN: What is the cheapest way to make a website?
#65Re: Ask HN: What is the cheapest way to make a website?
#66GitHub + Netlify makes a really nice combo as well, since Netlify helps with simple form handling (and a bunch of other niceties)
Re: Ask HN: What is the cheapest way to make a website?
#67In my case I used that for two websites - one is a blog and another one is a website for auto-generating comments.
In the case of first one, I use middleman to render static HTML files and then create a container that ships nginx and the application.
For the second app, the backend that generates comments is a Node.js application. The frontend is an app created using React, compiled into static website and Node.js serves the files.
Both apps cost me less than $0.1 per month and they have some traffic, but not a lot of it.
For the first app, I've also set up a CI/CD system using Google CLoud Build. So, every time I commit a new blog article, things get updated automatically. I did not have time to migrate the second app to same approach, but it should not be hard to do.
Google Cloud Build + Google Cloud Run can help you run a large variety of technologies almost for free, but in my case I only did it for stateless apps. You could use Google Cloud Run with a database, but I have not tried it.
Re: Ask HN: What is the cheapest way to make a website?
#68GitHub + Netlify makes a really nice combo as well, since Netlify helps with simple form handling (and a bunch of other niceties)
Re: Ask HN: What is the cheapest way to make a website?
#69Github pages is pretty much free. You can buy a domain name for ~$10 a year
Big up for GitHub pages! See the documentation here: https://pages.github.com/ You can also use `Jekyll`, a static site generator, directly with it, if you want fancier features: https://help.github.com/en/github/working-with-github-pages/...