Live data from Hacker News

Ask HN: Small teams and solopreneurs, how are you hosting your apps?

news.ycombinator.com

21–30 of 55 posts

Re: Ask HN: Small teams and solopreneurs, how are you hosting your apps?

#26
My setup is a digital ocean box with docker compose scripts and watchtower for deploys. All I have to do is push a new image and it will deploy in prod. Database is as aged Postgres cause that’s all that is really important. Cloudflare for the smaller services.

Re: Ask HN: Small teams and solopreneurs, how are you hosting your apps?

#27
Self-hosted on a VPS is the first option for me, it's cheap and you have total control on everything. It's valid in my case because I know my way through infrastructure and configuration, so a panel isn't too much gain.

You sometimes can even get those for free - https://free-for.dev/#/?id=major-cloud-providers

For example, I have some (really) free instances on Oracle Cloud that I host pages, experiments, and so many things.

Re: Ask HN: Small teams and solopreneurs, how are you hosting your apps?

#29
post #5

Fully managed so I can spend my time on actually building features. In my case, AWS is my go to cloud, and even with a couple of thousand users, Lambda for compute, DynamoDB for database and SNS+SQS for eventing is costing me less than 5€ per month. Yes, there are risks with serverless if you get DDOSed or whatever, but it’s a risk I’m fine with, and can mitigate with gateways in front if necessary. And Lambdas are n…

Snap, I'm using CDK to set it all up too which makes everything pretty easy to manage.

Re: Ask HN: Small teams and solopreneurs, how are you hosting your apps?

#30
We have our own servers (mostly consumer pc parts) and run lxd to slice them up into vms/containers. Deploy to those using kamal and expose the web server port through cloudflare tunnels. With simple scripts to periodically compress and upload the storage volumes and database dumps to Google drive, most of our less critical apps cost about $0 to keep running. For the higher criticality apps, we also deploy them to Linux vms using kamal, but use a commercial service (linode).
Post reply on HN