Skip to content

Instantly share code, notes, and snippets.

View a2z-ice's full-sized avatar
🎯
Focusing

Assaduzzaman a2z-ice

🎯
Focusing
View GitHub Profile
@a2z-ice
a2z-ice / architecture-summary-gist.md
Last active March 9, 2026 15:18
BookStore Platform — Microservices Architecture Summary (Kubernetes, Istio, Flink CDC, Superset)

BookStore Platform — Architecture Summary

Overview

A production-grade microservices e-commerce bookstore deployed to Kubernetes, demonstrating real-world architecture patterns including zero-trust networking, event-driven data pipelines, and real-time analytics. Built as a proof of concept with production-aligned infrastructure — every component follows the same patterns used in large-scale distributed systems.

Infrastructure Architecture

@a2z-ice
a2z-ice / gist:d481ebdf7b2d099060df277467431a06
Created January 14, 2024 10:26
docker-compose-shopecom
version: "3.8"
services:
shopecom-service:
image: assaduzzaman/shopecom-ui
container_name: shopecom-ui
depends_on:
- keycloak
- shopecom-api
ports:
- 80:80
worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
listen 80;
server_name shopecom-service;