forked from rysweet/azlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
389 lines (355 loc) · 10.3 KB
/
mkdocs.yml
File metadata and controls
389 lines (355 loc) · 10.3 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# Site Information
site_name: azlin Documentation
site_url: https://rysweet.github.io/azlin/
site_author: Ryan Sweet
site_description: >-
Comprehensive documentation for azlin - Azure VM fleet management CLI.
Provision, manage, and monitor development VMs with one command.
# Repository
repo_name: rysweet/azlin
repo_url: https://github.com/rysweet/azlin
edit_uri: edit/main/docs-site/
# Copyright
copyright: Copyright © 2025-2026 Ryan Sweet
# Configuration
theme:
name: material
# custom_dir: docs-site/overrides # Uncomment when overrides are ready
# Color scheme
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
# Features
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.expand
- 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
- toc.integrate
# Fonts
font:
text: Roboto
code: Roboto Mono
# Icons
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
# Plugins
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
lang: en
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
# Markdown Extensions
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 3
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: rysweet
repo: azlin
- pymdownx.smartsymbols
- 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.snippets:
check_paths: true
# Extra CSS and JavaScript
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Extra Configuration
extra:
version:
provider: mike
default: latest
# Social links
social:
- icon: fontawesome/brands/github
link: https://github.com/rysweet/azlin
name: GitHub Repository
- icon: fontawesome/brands/python
link: https://pypi.org/project/azlin/
name: PyPI Package
# Status badges
status:
new: New Feature
deprecated: Deprecated
experimental: Experimental
# Navigation Structure
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- First VM: getting-started/first-vm.md
- Basic Concepts: getting-started/concepts.md
- Compound VM:Session Naming: getting-started/compound-naming.md
- Authentication:
- Service Principal: authentication/service-principal.md
- Multi-Tenant Context: authentication/multi-tenant.md
- VM Lifecycle:
- Creating VMs: vm-lifecycle/creating.md
- Listing VMs: vm-lifecycle/listing.md
- Connecting: vm-lifecycle/connecting.md
- Session Management: vm-lifecycle/sessions.md
- Start/Stop: vm-lifecycle/start-stop.md
- Cloning VMs: vm-lifecycle/cloning.md
- Deleting VMs: vm-lifecycle/deleting.md
- Storage & NFS:
- storage/index.md
- Creating Storage: storage/creating.md
- Mounting Storage: storage/mounting.md
- Azure Bastion:
- Bastion Setup: bastion/setup.md
- Security: bastion/security.md
- Monitoring:
- Distributed Top: monitoring/top.md
- Logs Viewer: monitoring/logs.md
- Batch Operations:
- batch/index.md
- Batch Command: batch/command.md
- Fleet Management: batch/fleet.md
- Parallel Execution: batch/parallel.md
- Selectors: batch/selectors.md
- AI Features:
- ai/index.md
- Azdoit: ai/azdoit.md
- Autopilot: ai/autopilot.md
- Advanced Topics:
- advanced/index.md
- GitHub Runners: advanced/github-runners.md
- GUI Forwarding: advanced/gui-forwarding.md
- Session Management: advanced/session-management.md
- Template System V2: advanced/templates-v2.md
- Command Reference:
- commands/index.md
- VM Commands:
- commands/vm/index.md
- commands/vm/new.md
- commands/vm/clone.md
- commands/vm/list.md
- commands/vm/connect.md
- commands/vm/start.md
- commands/vm/stop.md
- commands/vm/status.md
- commands/vm/session.md
- commands/vm/tag.md
- commands/vm/update.md
- commands/vm/destroy.md
- commands/vm/kill.md
- commands/vm/killall.md
- Auth Commands:
- commands/auth/index.md
- commands/auth/setup.md
- commands/auth/list.md
- commands/auth/show.md
- commands/auth/test.md
- commands/auth/remove.md
- Context Commands:
- commands/context/index.md
- commands/context/create.md
- commands/context/use.md
- commands/context/list.md
- commands/context/show.md
- commands/context/delete.md
- commands/context/rename.md
- commands/context/migrate.md
- Storage Commands:
- commands/storage/index.md
- commands/storage/create.md
- commands/storage/mount.md
- commands/storage/unmount.md
- commands/storage/list.md
- commands/storage/status.md
- commands/storage/delete.md
- Batch Commands:
- commands/batch/index.md
- commands/batch/command.md
- commands/batch/sync.md
- commands/batch/start.md
- commands/batch/stop.md
- commands/batch/update.md
- Environment Commands:
- commands/env/index.md
- commands/env/set.md
- commands/env/list.md
- commands/env/delete.md
- commands/env/export.md
- commands/env/import.md
- commands/env/clear.md
- Snapshot Commands:
- commands/snapshot/index.md
- commands/snapshot/create.md
- commands/snapshot/list.md
- commands/snapshot/restore.md
- commands/snapshot/delete.md
- Template Commands:
- commands/template/index.md
- commands/template/create.md
- commands/template/list.md
- commands/template/import.md
- commands/template/export.md
- commands/template/delete.md
- Keys Commands:
- commands/keys/index.md
- commands/keys/rotate.md
- commands/keys/list.md
- commands/keys/export.md
- commands/keys/backup.md
- Bastion Commands:
- commands/bastion/index.md
- commands/bastion/create.md
- commands/bastion/configure.md
- commands/bastion/list.md
- commands/bastion/status.md
- commands/bastion/delete.md
- IP Commands:
- commands/ip/index.md
- commands/ip/check.md
- AI Commands:
- commands/ai/index.md
- Natural Language:
- commands/ai/do.md
- Infrastructure Deployment:
- commands/doit/index.md
- commands/doit/deploy.md
- commands/doit/list.md
- commands/doit/show.md
- commands/doit/status.md
- commands/doit/cleanup.md
- commands/doit/examples.md
- Autonomous Optimization:
- commands/autopilot/index.md
- commands/autopilot/enable.md
- commands/autopilot/disable.md
- commands/autopilot/status.md
- commands/autopilot/config.md
- commands/autopilot/run.md
- Fleet Commands:
- commands/fleet/index.md
- commands/fleet/overview.md
- Advanced Commands:
- commands/advanced/index.md
- commands/advanced/code-vscode.md
- commands/advanced/compose.md
- commands/advanced/github-runner.md
- commands/advanced/ip-diagnostics.md
- Compose Commands:
- commands/compose/index.md
- commands/compose/up.md
- commands/compose/down.md
- commands/compose/ps.md
- GitHub Runner Commands:
- commands/github-runner/index.md
- commands/github-runner/enable.md
- commands/github-runner/disable.md
- commands/github-runner/status.md
- commands/github-runner/scale.md
- Utility Commands:
- commands/util/index.md
- commands/util/cp.md
- commands/util/sync.md
- commands/util/ps.md
- commands/util/w.md
- commands/util/top.md
- commands/util/cost.md
- commands/util/update.md
- commands/util/os-update.md
- commands/util/prune.md
- commands/util/code.md
- commands/util/help.md
- Startup Version Check: commands/util/version-check.md
- Development:
- Architecture: development/architecture.md
- Testing: development/testing.md
- Release Process: development/release.md
- Troubleshooting:
- Compound Naming: troubleshooting/compound-naming.md
- FAQ: faq.md
- Changelog: changelog.md
# Documentation directory
docs_dir: docs-site
# Validation
# Note: strict mode disabled to allow documentation warnings during development
# Re-enable for production builds
strict: false