From 9a7f19270c50def47be5dc1a9b30d8655d7098c9 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Tue, 14 Jul 2026 18:13:22 +0000 Subject: feat: add authenticated /docs viewer for superpowers specs/plans Renders docs/superpowers/{specs,plans}/*.md to HTML via goldmark, served from doot's own web server behind the existing session auth instead of as raw files. DOCS_DIR is configurable (defaults to docs/superpowers relative to the working directory) so the deployed server can point straight at the working repo and stay live-synced with no separate copy/deploy step for new docs. --- internal/config/config.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/config/config.go') diff --git a/internal/config/config.go b/internal/config/config.go index f4baeef..e6bc19a 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -26,6 +26,7 @@ type Config struct { MigrationDir string TemplateDir string StaticDir string + DocsDir string // root of superpowers spec/plan docs, served read-only at /docs // Server Port string @@ -72,6 +73,7 @@ func Load() (*Config, error) { MigrationDir: getEnvWithDefault("MIGRATION_DIR", "migrations"), TemplateDir: getEnvWithDefault("TEMPLATE_DIR", "web/templates"), StaticDir: getEnvWithDefault("STATIC_DIR", "web/static"), + DocsDir: getEnvWithDefault("DOCS_DIR", "docs/superpowers"), // Server Port: getEnvWithDefault("PORT", "8080"), -- cgit v1.2.3