Merged
Conversation
Replace MkDocs + Material theme with VitePress, aligning with the ITK Dev documentation site conventions. This gives us a consistent tech stack, Docker dev environment, and the ability to password-protect projects. Key changes: - VitePress config, theme, and sidebar matching docs.itkdev.dk patterns - ITK Dev brand colors (teal/cyan) replacing neutral black/grey - Docker Compose + Nginx + Traefik dev environment with Taskfile - Client-side password gate (SHA-256 + sessionStorage) for protected projects - Lønforhandlingssystem project behind password protection - Mock HTML files moved to docs/public/ for raw static serving - MkDocs admonitions converted to VitePress custom containers - GitHub Actions updated for Node.js + VitePress build - PR build verification workflow added Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/public/so VitePress serves them as raw static assets!!!) to VitePress custom containers (:::)Password protection
Pages with
protected: truein frontmatter show a password prompt. Uses SHA-256 hash comparison + sessionStorage. Pages sharing the samepasswordGrouponly prompt once per session. Sidebar and outline are hidden while locked.Note: This is client-side only — content is in the HTML source. Adequate for casual access control, not for sensitive data.
Test plan
npm run docs:dev— dev server starts, all pages renderloenforhandling— content unlocks, sidebar/outline reappearnpx vitepress build docscompletes without errors🤖 Generated with Claude Code