Python 64.6%
TypeScript 33.7%
CSS 0.8%
1# The API image already serves the built SPA; this nginx front is optional (SPA + /api proxy).2apiVersion: apps/v13kind: Deployment4metadata: { name: web, namespace: uqo-chat }5spec:6 replicas: 27 selector: { matchLabels: { app: web } }8 template:9 metadata: { labels: { app: web } }10 spec:11 containers:12 - name: web13 image: ghcr.io/ORG/uqo-chat-web:latest14 ports: [{ containerPort: 80 }]15 resources: { requests: { cpu: 50m, memory: 64Mi }, limits: { cpu: 200m, memory: 128Mi } }16