mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-30 18:46:00 +00:00
e91f592f22
Add a Help section (profile menu, /help) that renders the GitHub wiki inside TREK. /api/help fetches the wiki markdown — the nav from _Sidebar.md, pages, and proxied images — from GitHub and caches it (1h TTL, serves stale on outage), so it auto-syncs on wiki edits with no redeploy and the client never calls GitHub directly. The page is styled to match TREK with a section sidebar, search and react-markdown; wiki [[links]] are rewritten to in-app routes and HTML-comment placeholders are stripped. Page state lives in a useHelp() hook per the page pattern. Adds nav.help and a help namespace across all locales.
71 lines
763 B
Plaintext
71 lines
763 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
client/dist/
|
|
server/dist/
|
|
shared/dist/
|
|
server/public/*
|
|
!server/public/.gitkeep
|
|
|
|
# Generated PWA icons (built from SVG via prebuild)
|
|
client/public/icons/*.png
|
|
|
|
# Database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
|
|
# User data
|
|
server/data/*
|
|
server/uploads/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
.claude/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage
|
|
coverage
|
|
*.lcov
|
|
.nyc_output
|
|
|
|
# Cache
|
|
.npm
|
|
.eslintcache
|
|
.cache
|
|
*.tsbuildinfo
|
|
*.tgz
|
|
|
|
.scannerwork
|
|
test-data
|
|
|
|
.run
|
|
.full-review
|
|
# Wiki offline snapshot is baked in at build, not committed (duplicates wiki/)
|
|
server/assets/wiki/
|