Hacker News new | ask | show | jobs
by solatic 1229 days ago
What's the strategy for dealing with persistent data? (Postgres, KV store, whatever)? How do I set that up and connect to it?

If you're running in AWS (looks like it), how do I set up private networking with RDS?

2 comments

It's advertised as a VM so it should have a persistent filesystem. So sounds like you can run your own DB service in the same VM or use SQLite.

Eg in this Django app example they are using PostgreSQL: https://docs.webapp.io/examples/django

Ty for asking this. I was searching the docs all over for this and surprised it wasn’t mentioned.