Hacker News new | ask | show | jobs
Which cloud platform is the best to quickly build a CRUD app?
1 points by steviesands 1269 days ago
If you were starting an app from scratch that required, say, serving a JS frontend, python as the server, and Postgres as the RDBMS, which cloud platform is the quickest/easiest?
1 comments

You have 2 options generally:

* platform as a service or PaaS: Render.com, Heroku, etc. Expensive and less control, but it's actually ready to use and you don't have to do any DevOps work.

* normal clouds with whatever flavour of Docker-based deployment system they have: AWS Fargate, Azure App Services, etc - potentially cheaper and gives you more control but you need to know DevOps basics and at least provide a Dockerfile.