Enterprise-Grade Microservices Platform | Showcasing Modern DevOps & Cloud-Native Architecture
MicroForge is a production-ready microservices platform demonstrating modern software architecture, DevOps engineering excellence, and cloud-native deployment strategies. Built with a polyglot approach across 5+ technologies, it showcases enterprise-level practices including containerization, orchestration, and comprehensive monitoring.
✅ Polyglot Microservices Architecture - 5 services, 5 different technologies
✅ Production-Ready Containerization - Multi-stage Docker builds, optimized images
✅ Kubernetes Native Deployment - Complete manifests, ConfigMaps, Secrets
✅ Enterprise DevOps Practices - CI/CD ready, health monitoring, logging
✅ Security-First Design - JWT authentication, CORS, environment isolation
✅ Scalable Infrastructure - Load balancing, service discovery, auto-scaling ready
| Service | Technology | Purpose | Key Features |
|---|---|---|---|
| Frontend | React 18 + Material-UI | User Interface | Runtime config injection, Responsive design |
| Auth Service | Go + Gin Framework | JWT Authentication | Token validation, CORS handling, Middleware |
| Login Service | Java Spring Boot 3 | User Management | JPA integration, Security, REST APIs |
| Metadata Service | Python Flask | System Monitoring | Cloud detection, Stress testing, Metrics |
| Notification Service | Node.js + Express | Event Processing | Async notifications, Email integration |
| Service | Technology | Port | Container Image |
|---|---|---|---|
| Frontend | React + Nginx | 3000 | manojmdocker14/microforge-frontend-service:v1.1.0 |
| Auth | Go + Gin | 8082 | manojmdocker14/microforge-auth-service:v1.0.0 |
| Login | Java + Spring Boot | 8081 | manojmdocker14/microforge-login-service:v1.1.0 |
| Metadata | Python + Flask | 8084 | manojmdocker14/microforge-metadata-service:v1.0.0 |
| Notification | Node.js | 8083 | manojmdocker14/microforge-notification-service:v1.0.0 |
| Login DB | MySQL 8.0 | 3308 | Custom with init scripts |
| Notification DB | MySQL 8.0 | 3307 | Custom with init scripts |
git clone https://github.com/Manoj-14/MicroForge.git
cd MicroForge/src
docker-compose up -d🎉 Access: http://localhost:3000
# Deploy to Kubernetes cluster
kubectl apply -f manifests/kubernetes/
kubectl get pods -n microforge-dev-ns🎉 Access: Configure ingress and DNS
- Multi-stage Docker builds with production optimization
- Kubernetes manifests with best practices (ConfigMaps, Secrets, Health checks)
- Environment configuration injection - Same image, multiple environments
- Comprehensive health monitoring across all services
- Structured logging with centralized configuration
- JWT-based authentication with secure token handling
- CORS configuration for cross-origin security
- Container security with distroless base images
- Network isolation with proper Kubernetes networking
- Secret management with Kubernetes native secrets
- Health check endpoints for all services (
/api/health,/actuator/health) - System metrics collection (CPU, memory, network, disk usage)
- Cloud environment detection (AWS, Kubernetes, local)
- Built-in stress testing capabilities for performance validation
- Runtime configuration injection - Deploy once, configure anywhere
- Polyglot architecture - Best tool for each job
- Database integration with connection pooling and transactions
- API-first design with comprehensive REST endpoints
- Scalable architecture ready for horizontal scaling
| Frontend | React 18, Material-UI, Axios, React Router |
| Backend | Go (Gin), Java (Spring Boot), Python (Flask), Node.js (Express) |
| Databases | MySQL 8.0 with connection pooling |
| Infrastructure | Docker, Kubernetes, Nginx Ingress |
| DevOps | Docker Hub, K8s manifests, Environment injection |
| Monitoring | Health checks, Metrics collection, Stress testing |
🎯 5 Microservices deployed across different technology stacks
🐳 Production-optimized Docker images with multi-stage builds
☸️ Complete Kubernetes deployment with 20+ manifest files
🔧 Zero-rebuild deployments with runtime configuration
📊 Comprehensive monitoring with health checks and metrics
🛡️ Security-first approach with JWT and proper CORS
GET /api/health # Health check
POST /api/validate # JWT token validation
GET /api/verify/:token # Token verification
GET /api/protected/profile # Protected user profileGET /actuator/health # Spring Boot health check
POST /api/auth/login # User authentication
POST /api/auth/register # User registration
GET /api/users # User managementGET /api/health # Health check
GET /api/metadata/instance # System instance metadata
GET /api/metadata/deployment # Deployment information
POST /api/stress/start # Performance stress testingGET /actuator/health # Health check
POST /api/notifications # Send notifications
GET /api/notifications # List notifications
POST /api/notifications/email # Email notifications- API Gateway Pattern with Nginx Ingress
- Service Discovery with Kubernetes DNS
- Configuration Management with ConfigMaps and Secrets
- Health Check Pattern across all services
- Circuit Breaker Ready architecture
- Database Per Service pattern
- Blue-Green Ready with Kubernetes deployments (Yet to Configure)
- Rolling Updates with zero-downtime deployments
- Horizontal Pod Autoscaling ready infrastructure (Yet to Configure)
- Multi-environment Support (dev, staging, production)
- Container Registry Integration with Docker Hub
MicroForge/
├── src/ # Source code for all services
│ ├── frontend-service/ # React application
│ ├── auth-service/ # Go authentication service
│ ├── login-service/ # Java Spring Boot service
│ ├── metadata-service/ # Python Flask service
│ ├── notification-service/# Node.js service
│ └── docker-compose.yml # Local development setup
├── manifests/kubernetes/ # K8s deployment manifests
└── README.md # Project documentation
# Prerequisites
- Docker & Docker Compose
- Kubernetes cluster (local or cloud)
- kubectl configured
# Quick Development Setup
git clone https://github.com/Manoj-14/MicroForge.git
cd MicroForge/src
docker-compose up✅ Full-Stack Development across 5+ programming languages
✅ Cloud-Native Architecture with Kubernetes expertise
✅ DevOps Engineering with container orchestration
✅ Database Design with proper normalization and relationships
✅ Security Implementation with modern authentication patterns
✅ API Design following REST principles and best practices
✅ Infrastructure as Code with declarative Kubernetes manifests
✅ Production Readiness with monitoring, logging, and health checks