forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
297 lines (294 loc) · 13.2 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
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
site_name: Prefect 2 - Coordinating the world's dataflows
site_url: https://docs.prefect.io/
repo_url: https://github.com/PrefectHQ/prefect
edit_uri: edit/main/docs
extra_css:
- stylesheets/theme.css
- stylesheets/admonitions.css
- stylesheets/api_ref.css
- stylesheets/rest_ref.css
- stylesheets/syntax_highlights.css
- stylesheets/termynal.css
- stylesheets/extra.css
extra_javascript:
- js/termynal.js
- js/custom.js
markdown_extensions:
- admonition
- attr_list
- codehilite
- md_in_html
- meta
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.tabbed
- toc:
permalink: true
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
theme:
name: material
custom_dir: docs/overrides
favicon: img/favicon.png
features:
- announce.dismiss
- toc.integrate
- navigation.tabs
- navigation.tabs.sticky
- search.suggest
- search.highlight
font:
text: Inter
code: Source Code Pro
icon:
repo: fontawesome/brands/github
logo: img/logos/prefect-logo-mark-solid-white-500.png
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
accent: blue
primary: blue
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
accent: blue
primary: blue
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
mike:
autorefs: {}
mkdocstrings:
# custom_templates: docs/templates
handlers:
python:
options:
show_root_heading: True
show_object_full_path: False
show_category_heading: False
show_bases: True
show_submodules: False
show_if_no_docstring: False
show_signature: False
heading_level: 1
filters: ["!^_"]
render_swagger: {}
search: {}
gen-files:
scripts:
- docs/collections/generate_catalog.py
- docs/recipes/generate_catalog.py
watch:
- mkdocs.yml
- mkdocs.insiders.yml
- src/prefect/
nav:
# - Prefect 2: index.md
- Getting Started:
- Welcome to Prefect 2: index.md
- Quick Start: getting-started/overview.md
- Installation: getting-started/installation.md
- Tutorials:
- Prefect Fundamentals:
- tutorials/first-steps.md
- tutorials/flow-task-config.md
- tutorials/execution.md
- tutorials/orchestration.md
- tutorials/deployments.md
- tutorials/storage.md
- tutorials/docker.md
- Prefect Cloud Quickstart: ui/cloud-quickstart.md
- Cloud Agent Quickstart: tutorials/cloud-agent.md
- Advanced Tutorials:
- tutorials/testing.md
- tutorials/dask-ray-task-runners.md
- Migration Guide: migration-guide.md
- Prefect Recipes:
- Recipes Catalog: recipes/recipes.md
- Contributing Recipes: recipes/contribute-recipes.md
- Concepts:
- Overview: concepts/overview.md
- Flows: concepts/flows.md
- Tasks: concepts/tasks.md
- Results: concepts/results.md
- States: concepts/states.md
- Infrastructure: concepts/infrastructure.md
- Task Runners: concepts/task-runners.md
- Deployments: concepts/deployments.md
- Agents & Work Pools: concepts/work-pools.md
- Storage: concepts/storage.md
- Blocks: concepts/blocks.md
- Filesystems: concepts/filesystems.md
- Schedules: concepts/schedules.md
- Logging: concepts/logs.md
- Database: concepts/database.md
- Settings: concepts/settings.md
- Prefect UI & Prefect Cloud:
- Prefect UI Overview: ui/overview.md
- Prefect Cloud Overview: ui/cloud.md
- Prefect Cloud Quickstart: ui/cloud-quickstart.md
- Prefect Cloud Concepts:
- Manage API keys: ui/cloud-api-keys.md
- Configure Local Environments: ui/cloud-local-environment.md
- ui/flow-runs.md
- ui/flows.md
- ui/deployments.md
- ui/work-pools.md
- ui/blocks.md
- ui/notifications.md
- ui/task-concurrency.md
- Workspaces: ui/workspaces.md
- Automations: ui/automations.md
- Organizations: ui/organizations.md
- Service Accounts: ui/service-accounts.md
- Roles (RBAC): ui/roles.md
- Single Sign-on (SSO): ui/sso.md
- Audit Log: ui/audit-log.md
- Troubleshooting: ui/troubleshooting.md
- Prefect Cloud API Rate Limits: ui/rate-limits.md
- Integrations:
- Collections Catalog: collections/catalog.md
- Using Collections: collections/usage.md
- Contributing Collections: collections/contribute.md
- FAQ: faq.md
- 'API Reference':
- Overview: api-ref/overview.md
- Prefect Python API:
- 'prefect.agent': api-ref/prefect/agent.md
# - 'prefect.client': api-ref/prefect/client.md
- 'prefect.context': api-ref/prefect/context.md
- 'prefect.deployments': api-ref/prefect/deployments.md
- 'prefect.engine': api-ref/prefect/engine.md
- 'prefect.exceptions': api-ref/prefect/exceptions.md
- 'prefect.filesystems': api-ref/prefect/filesystems.md
- 'prefect.flows': api-ref/prefect/flows.md
- 'prefect.futures': api-ref/prefect/futures.md
- 'prefect.infrastructure': api-ref/prefect/infrastructure.md
- 'prefect.logging': api-ref/prefect/logging.md
- 'prefect.packaging': api-ref/prefect/packaging.md
- 'prefect.serializers': api-ref/prefect/serializers.md
- 'prefect.settings': api-ref/prefect/settings.md
- 'prefect.states': api-ref/prefect/states.md
- 'prefect.task_runners': api-ref/prefect/task-runners.md
- 'prefect.tasks': api-ref/prefect/tasks.md
- 'Blocks':
- 'prefect.blocks.core': api-ref/prefect/blocks/core.md
- 'prefect.blocks.kubernetes': api-ref/prefect/blocks/kubernetes.md
- 'prefect.blocks.notifications': api-ref/prefect/blocks/notifications.md
- 'prefect.blocks.system': api-ref/prefect/blocks/system.md
- 'Client':
- 'prefect.client.base': api-ref/prefect/client/base.md
- 'prefect.client.cloud': api-ref/prefect/client/cloud.md
- 'prefect.client.orchestration': api-ref/prefect/client/orchestration.md
- 'prefect.client.schemas': api-ref/prefect/client/schemas.md
- 'prefect.client.utilities': api-ref/prefect/client/utilities.md
- 'Command Line Interface':
- 'prefect.cli.agent': api-ref/prefect/cli/agent.md
- 'prefect.cli.cloud': api-ref/prefect/cli/cloud.md
- 'prefect.cli.concurrency_limit': api-ref/prefect/cli/concurrency_limit.md
- 'prefect.cli.config': api-ref/prefect/cli/config.md
- 'prefect.cli.dev': api-ref/prefect/cli/dev.md
- 'prefect.cli.profile': api-ref/prefect/cli/profile.md
- 'prefect.cli.work_queue': api-ref/prefect/cli/work_queue.md
- 'prefect.cli.root': api-ref/prefect/cli/root.md
- 'prefect.cli.deployment': api-ref/prefect/cli/deployment.md
- 'prefect.cli.flow_run': api-ref/prefect/cli/flow_run.md
- 'prefect.cli.server': api-ref/prefect/cli/server.md
- 'Utilities':
- 'prefect.utilities.annotations': api-ref/prefect/utilities/annotations.md
- 'prefect.utilities.asyncutils': api-ref/prefect/utilities/asyncutils.md
- 'prefect.utilities.processutils': api-ref/prefect/utilities/processutils.md
- 'prefect.utilities.callables': api-ref/prefect/utilities/callables.md
- 'prefect.utilities.collections': api-ref/prefect/utilities/collections.md
- 'prefect.utilities.filesystem': api-ref/prefect/utilities/filesystem.md
- 'prefect.utilities.hashing': api-ref/prefect/utilities/hashing.md
- Prefect Server API:
- 'API':
- 'server.api.admin': api-ref/server/api/admin.md
- 'server.api.dependencies': api-ref/server/api/dependencies.md
- 'server.api.deployments': api-ref/server/api/deployments.md
- 'server.api.flows': api-ref/server/api/flows.md
- 'server.api.flow_runs': api-ref/server/api/flow_runs.md
- 'server.api.flow_run_states': api-ref/server/api/flow_run_states.md
- 'server.api.run_history': api-ref/server/api/run_history.md
- 'server.api.saved_searches': api-ref/server/api/saved_searches.md
- 'server.api.server': api-ref/server/api/server.md
- 'server.api.task_runs': api-ref/server/api/task_runs.md
- 'server.api.task_run_states': api-ref/server/api/task_run_states.md
- 'Models':
- 'server.models.flows': api-ref/server/models/flows.md
- 'server.models.flow_runs': api-ref/server/models/flow_runs.md
- 'server.models.flow_run_states': api-ref/server/models/flow_run_states.md
- 'server.models.task_runs': api-ref/server/models/task_runs.md
- 'server.models.task_run_states': api-ref/server/models/task_run_states.md
- 'server.models.deployments': api-ref/server/models/deployments.md
- 'server.models.saved_searches': api-ref/server/models/saved_searches.md
- 'Orchestration':
- 'server.orchestration.rules': api-ref/server/orchestration/rules.md
- 'server.orchestration.policies': api-ref/server/orchestration/policies.md
- 'server.orchestration.core_policy': api-ref/server/orchestration/core_policy.md
- 'server.orchestration.global_policy': api-ref/server/orchestration/global_policy.md
- 'Schemas':
- 'server.schemas.actions': api-ref/server/schemas/actions.md
- 'server.schemas.core': api-ref/server/schemas/core.md
- 'server.schemas.filters': api-ref/server/schemas/filters.md
- 'server.schemas.responses': api-ref/server/schemas/responses.md
- 'server.schemas.schedules': api-ref/server/schemas/schedules.md
- 'server.schemas.sorting': api-ref/server/schemas/sorting.md
- 'server.schemas.states': api-ref/server/schemas/states.md
- 'Services':
- 'server.services.late_runs': api-ref/server/services/late_runs.md
- 'server.services.loop_service': api-ref/server/services/loop_service.md
- 'server.services.scheduler': api-ref/server/services/scheduler.md
- 'Utilities':
- 'server.utilities.database': api-ref/server/utilities/database.md
- 'server.utilities.schemas': api-ref/server/utilities/schemas.md
- 'server.utilities.server': api-ref/server/utilities/server.md
- Prefect REST API:
- Prefect REST API Overview: api-ref/rest-api.md
- Prefect REST API Reference: api-ref/rest-api-reference.md
- Contributing:
- Overview: contributing/overview.md
- Style: contributing/style.md
- Versioning: contributing/versioning.md
- Troubleshooting: contributing/common-mistakes.md
extra:
version:
provider: mike
analytics:
provider: google
property: G-3M31G9B0QJ
social:
- icon: fontawesome/brands/slack
link: https://www.prefect.io/slack/
- icon: fontawesome/brands/discourse
link: https://discourse.prefect.io/
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/c/PrefectIO/videos
- icon: fontawesome/regular/newspaper
link: https://prefect.io/guide/
- icon: fontawesome/brands/twitter
link: https://twitter.com/PrefectIO
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/prefect/
- icon: fontawesome/brands/github
link: https://github.com/PrefectHQ/prefect
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/prefecthq/prefect/
- icon: fontawesome/brands/python
link: https://pypi.org/project/prefect/