-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
118 lines (114 loc) · 3.12 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
site_name: flowdapt
site_author: Emergent Methods, LLC
copyright: Emergent Methods, LLC
site_url: http://docs.flowdapt.ai/
repo_url: https://github.com/emergentmethods/flowdapt
repo_name: flowdapt
nav:
- Flowdapt:
- index.md
- Getting Started: getting_started.md
- Concepts:
- Workflows:
- concepts/workflows/index.md
- Stages: concepts/workflows/stages.md
- Context: concepts/workflows/context.md
- Object Storage: concepts/workflows/object_storage.md
- Configs:
- concepts/configs/index.md
- Triggers:
- concepts/triggers/index.md
- Executors:
- concepts/executor/index.md
- Ray: concepts/executor/ray.md
- Dask: concepts/executor/dask.md
- Local: concepts/executor/local.md
- Plugins:
- concepts/plugins/index.md
- Testing: concepts/plugins/testing.md
- User Modules: concepts/plugins/user_modules.md
- Advanced Topics:
- Visualization:
- Workflow Dashboard: advanced/visualize/dashboard.md
- Tensorboard: advanced/visualize/tensorboard.md
- Examples:
- Paperboy: examples/paperboy.md
- Nowcast: examples/nowcast.md
- Ray vs Dask: examples/rayvsdask.md
- Development:
- Contributor Guide: development/contributor_guide.md
- Debugging: development/debugging.md
- Architecture: development/architecture.md
- Reference:
- Configuration: reference/configuration.md
- CLI: reference/cli.md
- Rest API: reference/api/index.html
- Database:
- InMemory: reference/database/memory.md
- TinyDB (Disk): reference/database/tinydb.md
- MongoDB: reference/database/mongodb.md
- FlowML:
- flowml/index.md
- Data Processing:
- Pipefill: flowml/pipefill.md
- Pipeline: flowml/pipeline.md
- Flowctl:
- flowctl/index.md
- CLI Reference: flowctl/cli.md
extra_css:
- stylesheets/extra.css
theme:
name: material
logo: assets/logo-flame_300dpi.png
favicon: assets/favicon_32px.png
icon:
repo: fontawesome/brands/gitlab
features:
- content.code.annotate
- content.tabs.link
- search.share
- content.code.copy
- navigation.top
- navigation.footer
- navigation.sections
- navigation.indexes
- navigation.path
- navigation.tabs
icon:
repo: fontawesome/brands/gitlab
highlightjs: true
hljs_languages:
- yaml
- python
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: sphinx
allow_inspection: false
show_object_full_path: true
show_root_heading: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.caret
- mkdocs-click
- attr_list
- docdantic
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true