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,...
Hi, I'm Ana and welcome to my dev blog. I share insights and practical solutions to coding problems that I face at work or my hobby dev time. Subscribe for new articles and check out my latest tutorials on YouTube.
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,...
My use case: I have a monorepo project, but it's not setup like workspaces. There's api, app, all unrelated, except the common project. Common project just contains zod typings that are same...
Debugging production apps is not fun, often cryptic and tedious. It's hard because you can't just put a breakpoint on it and debug in a clean way, you can't always...
Github actions makes it easy to run ci/cd, but working with secrets is a mess. You can write them, but you can’t read them. You cannot echo them, GitHub obfuscates them. Sure, it’s...
I'm sometimes working on a long running feature branch. And sometimes I need to add some github actions workflow that needs to be run manually, and is specific to that feature. I create a...
This guide focuses on configuring subscriptions in an Expo app for both iOS and Android. In this walkthrough, I’m using RevenueCat with Expo SDK 53. The code builds on earlier Firebase integration examples. Repo is...