Thermograph monorepo: graded-climate API + SSR frontend + infra, domain-specific containerized deploys
Find a file
Emi Griffith c202eb45a0 compose: mount appdata at /state (not /app/data) to stop shadowing the data/ package
The split backend's Python package data/ lives at /app/data; mounting the
appdata runtime volume there erased data/*.py and broke import at boot. Point
THERMOGRAPH_DATA_DIR + the appdata mount + the singleton lock at /state,
outside the code tree. Pairs with thermograph-backend paths.py making
DATA_DIR/LOGS_DIR env-overridable.
2026-07-22 14:46:22 -07:00
.claude/skills/key-gaps Git-native secrets vault (SOPS + age) (#34) 2026-07-22 03:21:46 +00:00
.forgejo/workflows Git-native secrets vault (SOPS + age) (#34) 2026-07-22 03:21:46 +00:00
deploy Reconcile render-secrets.sh: sudo-read age key + in-place-write /etc/thermograph.env 2026-07-22 12:56:15 -07:00
terraform Decouple Terraform from the app repo; add a GCP host scaffold 2026-07-21 21:46:05 -07:00
.env.example Port orphaned infra files from monorepo (Makefile, .env.example, migrate-db, twa, DEPLOY docs) 2026-07-22 11:57:02 -07:00
.gitignore Decouple Terraform from the app repo; add a GCP host scaffold 2026-07-21 21:46:05 -07:00
.sops.yaml Git-native secrets vault (SOPS + age) (#34) 2026-07-22 03:21:46 +00:00
ACCESS.md Decouple Terraform from the app repo; add a GCP host scaffold 2026-07-21 21:46:05 -07:00
DEPLOY-DEV.md Port orphaned infra files from monorepo (Makefile, .env.example, migrate-db, twa, DEPLOY docs) 2026-07-22 11:57:02 -07:00
DEPLOY.md Port orphaned infra files from monorepo (Makefile, .env.example, migrate-db, twa, DEPLOY docs) 2026-07-22 11:57:02 -07:00
docker-compose.dev.yml Add LAN-dev registry-pull artifacts: docker-compose.dev.yml + deploy-dev.sh 2026-07-22 12:20:05 -07:00
docker-compose.openmeteo.yml Repo-split Stage 4: cut prod traffic to backend + frontend, dual-service (#14) 2026-07-21 20:01:30 +00:00
docker-compose.yml compose: mount appdata at /state (not /app/data) to stop shadowing the data/ package 2026-07-22 14:46:22 -07:00
docker-stack.yml Extract docs/ into thermograph-docs (repo-split Stage 6) (#20) 2026-07-21 21:29:14 +00:00
Makefile Port orphaned infra files from monorepo (Makefile, .env.example, migrate-db, twa, DEPLOY docs) 2026-07-22 11:57:02 -07:00
README.md Decouple Terraform from the app repo; add a GCP host scaffold 2026-07-21 21:46:05 -07:00

thermograph-infra

Infrastructure for Thermograph: Terraform host provisioning, the SOPS+age secrets vault, Docker Swarm/WireGuard networking, Forgejo, Caddy, and the deploy scripts that run the already-built app image on each host. Extracted from the app monorepo (emi/thermograph) — the app repo owns building and testing the app; this repo owns running it.

  • terraform/ — provisions/configures hosts (SSH-driven by default; an optional GCP-creating module is scaffolded, no live resources yet) and triggers each deploy. See terraform/README.md.
  • deploy/secrets/ — the git-native SOPS+age secrets vault (every app secret, encrypted at rest, rendered at deploy time). See deploy/secrets/README.md.
  • deploy/swarm/, deploy/forgejo/ — the 3-node WireGuard/Swarm cluster that hosts Forgejo (git + CI + registry); does not run the app itself. See ACCESS.md and the READMEs under each directory.
  • deploy/deploy.sh — pulls the pinned app image (IMAGE_TAG) and rolls the compose stack; invoked by Terraform and by the app repo's .forgejo/workflows/deploy.yml over SSH.
  • docker-compose*.yml, docker-stack.yml — how the app image runs (compose in production today; docker-stack.yml is a design record for a possible future Swarm-based app deploy, not currently live).

The app's own source, Dockerfile, and build/test CI stay in the app repo — this repo never checks out app source; hosts only pull tagged images from the registry. See ACCESS.md for host access and the Swarm/Forgejo topology, and terraform/README.md for the day-to-day plan/apply workflow.