← Back to context

Comment by gregsadetsky

8 months ago

what did you migrate to?

We got rid of all Rails apps (that needed a backend). We've moved our Postgres databases to Neon, and run our docker containers on Google Cloud Run (these are containers that don't need to run 24/7, we're paying just a few cents each month, also cold starts are much faster and more reliable than on Heroku).

Not OP, but we originally migrated to Digital Ocean. But now, all complex stuff is on AWS and dual-stack stuff is on Replit.

  • and what did you use to manage git push deployments, setting env vars to replicate the heroku features?

    also, you used replit for the frontend deployment? or frontend and some backend?

    thanks - just super interesting as I'm in the space and feedback/real cases are really useful

    • >> and what did you use to manage git push deployments, setting env vars to replicate the heroku features?

      Yes Digital Ocean did all this, they were very feature-close to Heroku. We have over time migrated everything stable/prod to AWS just because AWS has more products and hence you have everything in one place inside a VPC (e.g. vector db)

      For Replit, i'd use it for anything I can in early-stages. It helps to prototype ideas you are testing. You can iterate rapidly. For PROD we'd centralize onto AWS given the ecosystem.

      2 replies →