mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-09 18:28:10 +02:00
See: https://chatgpt.com/share/68d6f2f3-59a4-800f-b20e-ed1c7df9e2ff
Semi-Stateless Stack (Front + Back) ⚡
Description
sys-stk-semi-stateless combines the front and back layer into a lightweight, mostly stateless web service stack:
- Front bootstrap via
sys-stk-front-base
(HTTPS base, optional Cloudflare, handlers) - Backend via
sys-stk-back-stateless
(no persistent volumes/DB)
Ideal for services that need TLS/front glue but no database (e.g., TURN/STUN, gateways, simple APIs).
Responsibilities
- Prepare the front layer (HTTPS / handlers / optional Cloudflare)
- Deploy the stateless backend (typically via Docker Compose)
- Keep domain variables (
domain
) and app-scoped variables (application_id
) clearly separated