-
Notifications
You must be signed in to change notification settings - Fork 23
/
mkdocs.yml
104 lines (96 loc) · 2.58 KB
/
mkdocs.yml
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
site_name: HyperQueue
site_url: https://it4innovations.github.io/hyperqueue/
repo_url: https://github.com/It4innovations/hyperqueue
edit_uri: blob/main/docs/
site_description: Documentation of HyperQueue.
site_author: Ada Böhm, Jakub Beránek
nav:
- Overview: README.md
- Installation: installation.md
- Getting Started:
- Quickstart: quickstart.md
- Cheatsheet: cheatsheet.md
- Examples:
- examples/README.md
- Iterative computation: examples/iterative-computation/README.md
- Deployment:
- deployment/index.md
- Server: deployment/server.md
- Workers: deployment/worker.md
- Automatic Allocation: deployment/allocation.md
- Without Shared Filesystem: deployment/cloud.md
- Task computation:
- Jobs and Tasks: jobs/jobs.md
- Task Arrays: jobs/arrays.md
- Resources: jobs/resources.md
- CPU Resources: jobs/cresources.md
- Handling Failure: jobs/failure.md
- Output Streaming: jobs/streaming.md
- Directives: jobs/directives.md
- Job Definition File: jobs/jobfile.md
- Open jobs: jobs/openjobs.md
- Multinode Tasks: jobs/multinode.md
- CLI:
- Shortcuts: cli/shortcuts.md
- Dashboard: cli/dashboard.md
- Output mode: cli/output-mode.md
- Python API:
- Getting started: python/index.md
- Client: python/client.md
- Submitting jobs: python/submit.md
- Dependencies: python/dependencies.md
- API reference: python/apidoc/
- Changelog: changelog.md
- FAQ: faq.md
- Comparison With Other Tools: other-tools.md
theme:
name: material
custom_dir: docs/overrides
features:
- header.autohide
- navigation.instant
- navigation.top
# - navigation.sections
# - navigation.tabs
# - navigation.indexes
icon:
repo: fontawesome/brands/github
markdown_extensions:
- toc:
permalink: "#"
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
base_path: .
- footnotes
- admonition
plugins:
- search
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
- git-revision-date-localized:
type: date
fallback_to_build_date: true
enable_creation_date: true
- mike:
canonical_version: stable
- nedoc:
path: python/apidoc
- gen-files:
scripts:
- scripts/doc_copy_examples.py
extra:
analytics:
provider: google
property: G-TM8J8R5GJ9
version:
provider: mike
default: stable
extra_css:
- stylesheets/extra.css