Live data from Hacker News

Ask HN: Optimal cloud service to run tiny website with back end Python + SQLite?

news.ycombinator.com

1–10 of 79 posts

Ask HN: Optimal cloud service to run tiny website with back end Python + SQLite?

#1
Web ninjas: What is your go-to cloud service for running a small website served with python + jinja2 + sqlite? The website does little besides searching an sqlite table, serving a form, and writing the form response to an sqlite table, all with minimal computation and bandwidth. Wants are:

  Low price
  Low maintenance time/cost
  Simplicity
My strengths do not include web development/servers but I know the basics. I'm particularly interested in the gotchas like: difficulties setting up SSL, transfer limits, and "X is perfect except that ____".

If I'm asking the wrong question or not providing enough info, please say so.

Re: Ask HN: Optimal cloud service to run tiny website with back end Python + SQLite?

#6
I've used DigitalOcean (ref link -> https://m.do.co/c/a2a2c0826ff3) to host my Django sites, both with postgresql and sqlite. It will take you some time to figure out how to host it.

Once you a succeed each subsequent time becomes much easier. Plus you get to learn a ton about server management.

There are fantastic posts that will help you.

https://www.digitalocean.com/community/tutorials/how-to-set-...

Re: Ask HN: Optimal cloud service to run tiny website with back end Python + SQLite?

#9
I hate messing with nginx and ssl configurations that why I tried caprover (https://caprover.com/) on a vultr server. It handles ssl through let's encrypt and it even includes some nice monitoring tool. It needs some familiarity with docker if you want to fully use its features but in general I am running it on 2 servers with success and I am very happy. I totally recommend it.

Re: Ask HN: Optimal cloud service to run tiny website with back end Python + SQLite?

#10
Dokku + your favorite VPS: http://dokku.viewdocs.io/dokku/

Installation is a breeze and there are plugins. If you're at all familiar with Heroku's deploy, you'll love this. It's the closest thing I've found to `git push` without any thinking.

Post reply on HN