-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
75 lines (75 loc) · 1.88 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
site_name: Dagger - Distributed Data Pipelines in Python
site_url: https://larribas.me/dagger
site_description: Documentation portal for the Dagger (py-dagger) Python library.
site_author: Lorenzo Arribas (@larribas)
repo_url: https://github.com/larribas/dagger
edit_uri: edit/main/docs/
strict: true
theme:
name: material
logo: assets/images/logo/favicon-32x32.png
favicon: assets/images/logo/favicon.ico
features:
- navigation.instant
- navigation.top
- search.highlight
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: green
accent: pink
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: green
accent: lime
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed
- toc:
permalink: true
plugins:
- search
- mkapi
nav:
- Overview: README.md
- quick-start.md
- user-guide/tasks.md
- user-guide/dags.md
- user-guide/dag-composition.md
- user-guide/partitioning.md
- user-guide/map-reduce.md
- user-guide/dsl.md
- Serializers:
- user-guide/serializers/alternatives.md
- user-guide/serializers/json.md
- user-guide/serializers/pickle.md
- user-guide/serializers/write-your-own.md
- Runtimes:
- user-guide/runtimes/alternatives.md
- user-guide/runtimes/local.md
- user-guide/runtimes/cli.md
- user-guide/runtimes/argo.md
- user-guide/runtimes/write-your-own.md
- API Reference:
- api/init.md
- api/dag.md
- api/task.md
- api/input.md
- api/output.md
- api/serializer.md
- api/dsl.md
- api/runtime-local.md
- api/runtime-cli.md
- api/runtime-argo.md
- Releases ⧉: https://github.com/larribas/dagger/releases
- PyPI ⧉: https://pypi.org/project/py-dagger/