Databases
Fully-managed Postgres and Redis-compatible Key Value.
Runko offers managed Postgres and a Redis-compatible Key Value store. Both run inside your private network, are encrypted at rest, and expose a connection string you can wire into any service.
Create a Postgres database
bash
runko db create shop-db --engine postgres --plan hobbyConnect a service
Reference the database's connection string from any service, so you never paste credentials by hand.
yaml
envVars:
- key: DATABASE_URL
fromDatabase: { name: shop-db, property: connectionString }Backups & recovery
- Automated daily backups on every paid plan.
- Point-in-time recovery on Pro and Scale.
- Read replicas for scaling reads on Scale.