thermograph/frontend/paths.py
Emi Griffith d6df04eab2 Subtree-merge thermograph-frontend (origin/main) into frontend/
git-subtree-dir: frontend
git-subtree-mainline: a4be7066e5
git-subtree-split: 3a98146da4
2026-07-22 22:01:11 -07:00

12 lines
546 B
Python

"""Canonical filesystem locations for the SSR service, resolved once from the
repo root (repo-split Stage 7). content/ is committed here as a starter copy
extracted alongside frontend/frontend_ssr -- real cross-repo vendoring from
thermograph-copy (a build-time clone at a pinned ref) is deferred follow-up
work, not yet wired up.
"""
import os
REPO_DIR = os.path.dirname(os.path.abspath(__file__))
STATIC_DIR = os.path.join(REPO_DIR, "static")
TEMPLATES_DIR = os.path.join(REPO_DIR, "templates")
CONTENT_DIR = os.path.join(REPO_DIR, "content")