Trackly Blog 4: Dockerizing a Full-Stack Go + React Application with PostgreSQLWhen I started building Trackly, I wanted more than just another side project. I wanted it to be production-ready, portable, and a strong showcase of my ability to work with Docker, Compose, and containerised workflows. In this blog, I’ll share how I...Aug 30, 2025·3 min read
Trackly: A Production-Ready Full-Stack Application with Go, React, PostgreSQL, Docker, and JWT AuthenticationAug 15, 2025·5 min read
🎬 I Built an IMDb CLI App with Go — Search, Save & Compare Movies from Your TerminalJul 18, 2025·6 min read
🚀 A Complete Guide to CI/CD for Go Projects using GitHub Actions🧠 What is CI/CD? Setting up a solid CI/CD pipeline is one of the most impactful steps in delivering reliable software. If you’re working with Go (Golang) and deploying using Docker Compose, GitHub Actions offers a robust, free, and easy-to-use CI/CD...Jun 28, 2025·2 min read
🐳 Dockerizing My Go CLI App with SQLite Support📦 About mycli mycli is a lightweight command-line app built with Cobra in Go. It allows you to: Add, list, or search records Use SQLite as a local DB (via gorm) Run everything inside Docker — no need for Go or SQLite installed on your system ⚙️...Jun 22, 2025·4 min read
Kubernetes basics: Understanding Containers, Pods, and Deployments#Containers: Containers are the fundamental units of software packaging and execution. They encapsulate an application and its dependencies, providing a consistent environment across different systems. Internal working: Isolation: Containers use oper...Jan 10, 2025·5 min read
Kubernetes Architecture Explained: Key Components and StructureKubernetes Architecture Kubernetes is a container orchestration platform designed to manage containerized applications across a cluster of machines. Master Node: Manages the entire cluster and orchestrates the operations of worker nodes. 1.API S...Jan 6, 2025·3 min read
AWS Basics Explained: Part 1INSTANCE:- An instance on Amazon Web Services (AWS) refers to a virtual server that you can use to run applications and workloads in the cloud. AWS instances are a key component of the Amazon Elastic Compute Cloud (Amazon EC2) service. #HOW TO LAUNCH...Jun 14, 2024·2 min read