Running Local GitHub Actions with Nektos Act
If you're managing GitHub actions, you might want to try nektos act. It will make your development faster and you don't need to use up GitHub CI minutes. I cringe when I...
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.
If you're managing GitHub actions, you might want to try nektos act. It will make your development faster and you don't need to use up GitHub CI minutes. I cringe when I...
This guide shows how to add push notifications in Expo, but without expo-notifications. Nothing against expo-notifications, it's just that I learned this method first. Expo GO will not work. This is always the case...
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...