-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
237 lines (220 loc) · 6.85 KB
/
Copy pathmkdocs.yml
File metadata and controls
237 lines (220 loc) · 6.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
site_name: Jarvy
site_url: https://jarvy.dev
site_description: >-
Jarvy is a fast, cross-platform CLI that provisions a complete local
development environment from a single declarative jarvy.toml file —
native package managers, no cloud, MIT-licensed.
site_author: Zac Clifton
repo_url: https://github.com/bearbinary/jarvy
repo_name: bearbinary/jarvy
edit_uri: edit/main/docs/
copyright: Copyright © 2025-2026 Zac Clifton
theme:
name: material
custom_dir: docs/overrides
language: en
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Inter
code: JetBrains Mono
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
plugins:
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- social:
cards_layout_options:
background_color: "#1a1f3a"
color: "#FFFFFF"
- tags
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/bearbinary/jarvy
name: Jarvy on GitHub
- icon: fontawesome/brands/x-twitter
link: https://twitter.com/intent/tweet?text=Check%20out%20Jarvy%20%E2%80%94%20dev%20environments%20as%20code&url=https://jarvy.dev
name: Share on X
generator: false
status:
new: Recently added
deprecated: Deprecated
version:
provider: mike
default: latest
# Plausible Analytics — privacy-friendly, GDPR-safe, no cookies.
# Configure the domain to match the deployed site.
analytics:
provider: custom
plausible:
domain: jarvy.dev
script: https://plausible.io/js/script.js
extra_css:
- assets/extra.css
- https://cdn.jsdelivr.net/npm/asciinema-player@3.7.0/dist/bundle/asciinema-player.css
extra_javascript:
- https://cdn.jsdelivr.net/npm/asciinema-player@3.7.0/dist/bundle/asciinema-player.min.js
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
permalink_title: Anchor link to this section
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
base_path:
- .
- docs
check_paths: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home: index.md
- Get Started:
- Quickstart: quickstart.md
- Tutorial — your first jarvy.toml: tutorials/first-config.md
- Tutorial — onboard a team: tutorials/team-onboarding.md
- Examples gallery: examples.md
- Templates: templates-index.md
- Concepts:
- Overview: concepts/overview.md
- Tools: concepts/tools.md
- Lifecycle: concepts/lifecycle.md
- Roles & inheritance: concepts/roles-and-inheritance.md
- Hook execution: concepts/hooks-execution.md
- Drift baseline: concepts/drift-baseline.md
- Cookbook:
- Overview: cookbook/index.md
- Behind a corporate proxy: cookbook/corporate-proxy.md
- Multi-project Postgres: cookbook/multi-project-postgres.md
- Monorepo roles: cookbook/monorepo-roles.md
- Secrets via 1Password: cookbook/secrets-1password.md
- GitHub Actions matrix: cookbook/github-actions-matrix.md
- Slack notifier hook: cookbook/slack-notifier.md
- Guides:
- Roles guide: roles.md
- Hooks guide: hooks.md
- AI hooks: ai-hooks.md
- MCP registration: mcp-registration.md
- Tool dependencies: tool-dependencies.md
- Language packages: packages.md
- Git configuration: git-config.md
- Network & proxy: network.md
- Drift detection: drift.md
- Logging & tickets: logging.md
- Telemetry: telemetry.md
- Self-updating: self-update.md
- CI/CD integration: ci-cd.md
- Adding tools: adding-tools.md
- Migrate:
- Overview: migrate/index.md
- Migrate with AI: migrate/migrate-with-ai.md
- From Codespaces: migrate/from-codespaces.md
- From DevPod: migrate/from-devpod.md
- From Gitpod: migrate/from-gitpod.md
- From Dev Containers: migrate/from-dev-containers.md
- From Vagrant: migrate/from-vagrant.md
- From Homebrew Bundle: migrate/from-homebrew-bundle.md
- From mise: migrate/from-mise.md
- From asdf: migrate/from-asdf.md
- From Nix: migrate/from-nix.md
- Reference:
- Configuration (jarvy.toml): configuration.md
- JSON Schema (editor autocomplete): schema/index.md
- CLI reference (auto): cli-reference.md
- CLI guide: cli.md
- Tool registry (auto): tools-registry.md
- Error codes: error-codes.md
- FAQ: faq.md
- Changelog: changelog.md
- For AI Agents:
- Overview: for-ai-agents.md
- MCP server: mcp-server.md
- AI sandboxes: ai-sandboxes.md
- Architecture: architecture.md
- llms.txt (concise): https://jarvy.dev/llms.txt
- llms-full.txt (full): https://jarvy.dev/llms-full.txt
- Comparisons:
- Overview: competitors/competitive-analysis.md
- vs Homebrew Bundle: competitors/vs-homebrew-bundle.md
- vs mise: competitors/vs-mise.md
- vs asdf: competitors/vs-asdf.md
- vs Nix: competitors/vs-nix.md
- vs Codespaces: competitors/vs-codespaces.md
- vs Gitpod: competitors/vs-gitpod.md
- vs DevPod: competitors/vs-devpod.md
- vs Docker: competitors/vs-docker.md
- vs Vagrant: competitors/vs-vagrant.md
- vs Chainguard: competitors/vs-chainguard.md
- Community:
- Contributing: contributing.md