🏆 Professional Upgrade: From v1 Monolith to v2 Agnostic Serverless Architecture.
This repository represents the high-performance evolution of the v1 baseline. The original v1 project was selected and validated by the Hungarian National Innovation Agency (NIÜ) for its innovative approach to cloud efficiency. By transitioning to this v2 Cloud-Native Serverless design, the system achieved a 2.7x increase in response speed while maintaining a completely Cloud-Agnostic core.
This version focuses on Latency Reduction and Operational Cost Optimization. The business logic is now fully decoupled from the infrastructure using a Hexagonal (Agnostic) design pattern, representing the Minimum Viable Product (MVP) of the v2 design phase.

| Feature | v1 (Baseline) | v2 (Upgraded) | Improvement |
|---|---|---|---|
| Infrastructure | Elastic Beanstalk (EC2) | AWS Lambda (Serverless) | No Idle Costs |
| Framework | Monolithic Django | Python Agnostic Core | Zero Overhead |
| Median Latency | ~120 ms | 44 ms | ~63% Faster |
| Scaling | Instance-based | Event-driven (Horizontal) | Instant Scaling |
| Deployment | CI/CD Monolith | Dockerized FaaS | Higher Portability |
This diagram illustrates the complete CI/CD process from a developer pushing code to the application being live on AWS.

The core logic: core.py is completely independent of the AWS runtime. The main.py acts strictly as a Lambda Adapter. This ensures the core business logic remains protected and isolated from the infrastructure environment, making the system highly portable and testable without cloud dependencies.

Under heavy load testing, the system maintained a consistent 44 ms median response time.
Detailed technical guides for reproduction and audit:
While v2 perfected the Technical Core, the deployment remains manual to ensure architectural validation.
Note on MTTR: At this PoC upgrade phase, MTTR is manual. Automated self-healing is intentionally deferred to the v3 phase to maintain focus on raw performance metrics.
Ervin Wallin © 2026. This project is a professional architectural upgrade. Re-use or modification requires prior permission.