thermograph/frontend/paths.py

13 lines
546 B
Python
Raw Permalink Normal View History

"""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")