-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
75 lines (70 loc) · 2.23 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: Krews
repo_name: krews
repo_url: https://github.com/weng-lab/krews
site_description: "Kotlin Reactive Workflows"
site_author: Jason Brooks
remote_branch: master
copyright: 'Copyright © 2018 Weng Lab'
theme:
name: 'material'
logo: img/krews_logo_white.png
favicon: img/favicon.ico
palette:
primary: 'blue grey'
accent: 'amber'
extra_css:
- 'css/extra.css'
markdown_extensions:
- admonition
- meta
- smarty
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
nav:
- 'Why Krews?':
- 'Tooling': why_krews.md
- 'Clean, Concise, and Powerful': why_krews/#clean-concise-powerful
- 'Docker Native': why_krews/#docker-native
- 'Cloud Native': why_krews/#cloud-native
- 'Getting Started':
- 'Using the Boilerplate (Recommended)': getting_started.md
- 'From Scratch': getting_started/#creating-a-project-from-scratch
- 'Docker':
- 'How Krews uses Docker': docker.md
- 'What about Singularity': docker/#what-about-singularity
- 'Reactor':
- 'Publishers, Fluxes, and Monos': reactor.md
- 'Flux and Mono Creation': reactor/#flux-and-mono-creation
- 'Operations': reactor/#operations
- 'Workflows':
- 'Workflow Basics': workflows.md
- 'Tasks': workflows/#tasks
- 'Files': workflows/#files
- 'Parameters': workflows/#params
- 'Grouping': workflows/#grouping
- 'Code Organization': workflows/#code-organization
- 'Running / Environments':
- 'Running': running_environments.md
- 'Google': running_environments/#google
- 'Slurm': execution_environments/#slurm
- 'Local Docker': execution_environments/#local-docker
- 'Configurations':
- 'Configuration Basics': config.md
- 'Workflow Configurations': config/#workflow-configurations
- 'Task Configurations': config/#task-configurations
- 'Parameters': config/#parameters
- 'Output and State':
- 'Caching': state.md
- 'State': state/#state
- 'Reports': state/#reports
- 'Workflow Output Layout': state/#workflow-output-layout