Use GitHub Actions to schedule Database Backups
It's always recommended to backup your database, because you never know... If the service you're using doesn't do automated backups, you can easily schedule it with GitHub actions. For example,...
Postgres is for developers who need a reliable, feature rich relational database that scales from side projects to production systems. It solves problems around data integrity, complex querying, and consistency without locking you into proprietary tooling. If you work with structured data, migrations, and performance sensitive queries, Postgres gives you control and flexibility without unnecessary complexity.
It's always recommended to backup your database, because you never know... If the service you're using doesn't do automated backups, you can easily schedule it with GitHub actions. For example,...
In this guide I'll explain how to connect to AWS RDS (Relational Database Service) postgres instance from your...
In development I like to use containerized databases. Recently I've been working on a micro service project that...