AYAkash Yadavinblog.akashy.com.np·11h ago · 4 min readSupabase Database Backup on the Free Tier⚡Since automated backups aren't available on the Supabase Free Tier, I wanted a simple workflow I could run before every migration. There Are 3 Ways to Backup a Supabase Database If you're on the Supa00
LBLalit Baggainblog.lalitbagga.com·1d ago · 7 min readFrom EC2 to ECS: Containerizing My Three Tier App with GitHub ActionsMy three tier architecture had a problem. The app server was a plain EC2 instance sitting in a private subnet doing absolutely nothing. No application running on it. No way to deploy to it without SSH00
VTVladimir Ternovoyinqaboutique.hashnode.dev·3d ago · 6 min readWhy toast-only Playwright tests are not enoughAI-generated end-to-end tests often look useful at first glance. They click through a flow. They wait for something visible. They pass. But sometimes the entire assertion is basically this: await expe00
VTVladimir Ternovoyinqaboutique.hashnode.dev·4d ago · 4 min readI built a read-only GitHub Action to flag risky PRs before mergeMost CI checks answer questions like: Does the code compile? Do the tests pass? Does linting pass? Is formatting correct? Those checks are useful, but they often miss a different question: Did 00
BKBeautero KENNEinbopsbeautero.hashnode.dev·6d ago · 3 min readHow to Orchestrate Conflict-Free Dual Automatic Deployment with Vercel and GitHub Pages using GitHub ActionsHere is how you can set up a modern CI/CD (Continuous Integration / Continuous Deployment) pipeline capable of automatically deploying a frontend web application to two distinct production environment00
ANAyush Nigaminayushnigam.hashnode.dev·Jun 16 · 9 min readOne Pipeline, Four Test Frameworks — Designing CI/CD That Doesn't Slow You Down1. The Problem I hit this exact problem when my pipeline took 18 minutes per push. My stack required running Vitest for the Next.js frontend, pytest with testcontainers for the FastAPI backend, Playwr00
HLHatim Lohaingitworkflowjourney.hashnode.dev·Jun 10 · 2 min readLesson 2 — Git & GitHub JourneyUnderstanding File Changes in Git Today you’ll learn: git diff staging vs unstaging restoring files .gitignore These are daily-use Git skills. 1. Modify Existing File Change your file: touch not00
HLHatim Lohaingitworkflowjourney.hashnode.dev·Jun 10 · 2 min readLesson 1 — Git & GitHub JourneyLesson 1 — Git & GitHub Journey What is Git? Git is a version control system. It tracks: file changes code history who changed what rollback versions team collaboration Think like: Save Game Sy00
OTOgunleye Timilehin (D.j.timog)indjtimog.hashnode.dev·Jun 8 · 9 min readHow to Set Up a CI/CD Pipeline with GitHub Actions and RenderIntroduction When I started learning CI/CD as part of the Full Stack Open curriculum, I thought it was going to be complicated. It turned out to be one of the most satisfying things I've set up as a d00
VCVivian Chiamaka Okoseinvivianokose.hashnode.dev·Jun 5 · 7 min readWhy My CI Pipeline Kept Failing (And What I Had to Redesign to Fix It)error: failed to push some refs to 'https://github.com/...' Updates were rejected because the remote contains work that you do not have locally. The first time it happened I thought it was a simple g00