August 16, 2026 VANGAURD ENGINE ARCHITECT
Part 1: The Remote Infrastructure & Workspace Architecture I have engineered a modern, production-grade cloud development pipeline. Instead of relying on a local machine to compile heavy C++ engine code, I shifted the entire infrastructure to a scalable, containerized system.The Remote Host Engine (Coder.com): I deployed a centralized platform that acts as the backbone for MY workspace hosting. It abstracts the physical hardware layer, allowing you to access a dedicated development box from anywhere.
Orchestration & Storage (Kubernetes & PVCs):
The workspace is managed inside a Kubernetes cluster. When you boot the environment, it provisions an isolated Kubernetes Pod. To prevent loss of your code files between sessions, you configured a Kubernetes Persistent Volume Claim (PVC), which acts as a permanent virtual hard drive attached to that specific container.
The Development Blueprint (devcontainer.json): I built a structured configuration that dictates the exact environment specifications. Utilizing Envbuilder, this file automatically builds out your container, handles system packages, and mounts all required tools so that your workspace is operational the second you connect
The Compiler Toolchain: Inside this environment, you isolated CMake to generate cross-platform build files, alongside a native C++ compiler stack to manage everything cleanly without polluting local machine settings.

Hey Indie Hackers! Following up on my last post, I’ve been diving deep into how to structure the launch, pricing tiers, and monetization for the app while pushing through the final coding and debugging phase.
Instead of building blindly, I’ve mapped out the business model against the structural constraints of the Google Play Store—and how it maps to my tech stack. Here is how Part 2 is shaping up:
💻 The Tech Stack Under the Hood
To give you some context on the build, the repository breakdown looks like this:
TypeScript (73.5%): Handling the core application logic, UI components, state management, and the frontend wiring.
C++ (25.7%): Powering the high-performance native modules and heavy computational backend under the hood.
Other (0.8%): General configuration files and build scripts.
Debugging across the TypeScript-to-native C++ bridge while implementing secure payment triggers has been the ultimate final boss of this coding phase, but I am almost at the finish line.