-
Notifications
You must be signed in to change notification settings - Fork 5
docs: add comprehensive MkDocs Material documentation site #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
eywalker
wants to merge
11
commits into
dev
Choose a base branch
from
claude/add-repo-documentation-J4ANK
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e4a19b7
docs: add comprehensive MkDocs Material documentation site
claude 0326ce8
ci(docs): add GitHub Actions workflow for deploying docs to GitHub Pages
claude 6615bc0
docs: configure custom domain orcapod.org for GitHub Pages
claude f43535c
docs: add documentation site setup & maintenance guide
claude 1c2465b
chore: update uv.lock with docs dependency group
claude e25d5a8
docs: add branch hygiene instructions to CLAUDE.md and .zed/rules
claude c955023
fix(docs): address Copilot review comments on PR #69
claude b2b9a24
test(docs): add pytest-codeblocks for documentation code snippet testing
claude 0c77b3b
chore: ignore nested orcapod-python/ directory
claude feaf49c
ci: add SessionStart hook for Claude Code on the web
claude bd7c048
docs: update CLAUDE.md and .zed/rules for async pipeline architecture
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| #!/bin/bash | ||
| set -euo pipefail | ||
|
|
||
| # Only run in remote (Claude Code on the web) environments | ||
| if [ "${CLAUDE_CODE_REMOTE:-}" != "true" ]; then | ||
| exit 0 | ||
| fi | ||
|
|
||
| # Install system dependencies required by pygraphviz | ||
| if ! dpkg -s libgraphviz-dev >/dev/null 2>&1; then | ||
| sudo apt-get update -qq | ||
| sudo apt-get install -y -qq graphviz libgraphviz-dev >/dev/null 2>&1 | ||
| fi | ||
|
|
||
| # Install Python dependencies using uv | ||
| cd "$CLAUDE_PROJECT_DIR" | ||
| uv sync --group dev |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "hooks": { | ||
| "SessionStart": [ | ||
| { | ||
| "hooks": [ | ||
| { | ||
| "type": "command", | ||
| "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/session-start.sh" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| name: Deploy docs | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| concurrency: | ||
| group: "pages" | ||
| cancel-in-progress: false | ||
|
|
||
| jobs: | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: astral-sh/setup-uv@v4 | ||
|
|
||
| - name: Install docs dependencies | ||
| run: uv sync --group docs | ||
|
|
||
| - name: Build documentation | ||
| run: uv run mkdocs build | ||
|
|
||
| - uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: site/ | ||
|
|
||
| - id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The docs deployment workflow installs the full project (not just MkDocs), so it likely needs the same CI prerequisites as
run-tests.yml(notablygraphviz/libgraphviz-devforpygraphviz, and an explicit Python version viaactions/setup-python). Also consider usinguv sync --locked --group docsto ensure the build fails ifuv.lockis out of date, matching the reproducibility guarantees used in the test workflow.