Skip to content

Commit 3c76180

Browse files
committed
Updated to include mkdocs-quiz extension and fixed installation of Claude Extension in dev container.
1 parent cbecb25 commit 3c76180

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,25 @@
66
"image": "mcr.microsoft.com/devcontainers/base:debian",
77
"features": {
88
"ghcr.io/devcontainers-extra/features/mkdocs:2": {},
9-
"ghcr.io/devcontainers/features/python:1":{}
10-
},
9+
"ghcr.io/devcontainers/features/python:1":{},
10+
"ghcr.io/devcontainers/features/git:1": {}
11+
},
1112
"postCreateCommand": [
12-
"pip3 install --user -r requirements.txt",
13-
//"pip3 install --user first-agentic-csa",
14-
"curl -fsSL https://claude.ai/install.sh | bash"
13+
"pip install -r requirements.txt && curl -fsSL https://claude.ai/install.sh | bash"
1514
],
1615
"customizations": {
1716
"vscode": {
1817
"extensions": [
1918
"main-branch.mkdocs-snippet-lens",
2019
"aikebang.mkdocs-syntax-highlight",
2120
"ytianle.mkdocs-material-linter",
22-
"anthropic.claude-vscode"
21+
"Anthropic.claude-code"
2322
]
2423
}
2524
},
2625
"mounts": [
27-
"source=${localWorkspaceFolder}/../../.claude,target=/home/vscode/.claude,type=bind,consistency=cached",
28-
"source=${localWorkspaceFolder}/../../.claude.json,target=/home/vscode/.claude.json,type=bind,consistency=cached"
26+
"source=${localWorkspaceFolder}/../../../.claude,target=/home/vscode/.claude,type=bind,consistency=cached",
27+
"source=${localWorkspaceFolder}/../../../.claude.json,target=/home/vscode/.claude.json,type=bind,consistency=cached"
2928
]
3029
// Features to add to the dev container. More info: https://containers.dev/features.
3130
// "features": {},

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ markdown_extensions:
8888
# Plugins
8989
plugins:
9090
- search
91+
- mkdocs_quiz
9192
# - minify:
9293
# minify_html: true
9394
# minify_js: true

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
mkdocs
44
mkdocs-material
55
pymdown-extensions
6-
mkdocs-minify-plugin
6+
mkdocs-minify-plugin
7+
mkdocs-quiz

0 commit comments

Comments
 (0)