-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
98 lines (98 loc) · 3.21 KB
/
mkdocs.yml
File metadata and controls
98 lines (98 loc) · 3.21 KB
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
site_name: AIBS Informatics AWS Lambda
site_description: "Utility library for building validated and typed AWS Lambda functions at the Allen Institute for Brain Science."
repo_url: https://github.com/AllenInstitute/aibs-informatics-aws-lambda
repo_name: AllenInstitute/aibs-informatics-aws-lambda
docs_dir: docs
site_dir: build/documentation/site
theme:
name: material
language: en
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- content.code.annotate
plugins:
- search
- autorefs:
link_titles: auto
- mkdocstrings:
default_handler: python
handlers:
python:
paths:
- src
options:
extensions:
- griffe_pydantic:
schema: true
docstring_style: google
show_source: true
separate_signature: true
heading_level: 2
filters:
- "!^_"
merge_init_into_class: true
nav:
- Home: index.md
- User Guide:
- Getting Started: user-guide/getting-started.md
- CLI Usage: user-guide/cli-usage.md
- Developer Guide:
- Overview: developer/index.md
- API Reference:
- Overview: api/index.md
- Main: api/main.md
- Common:
- Overview: api/common/index.md
- Handler: api/common/handler.md
- Base: api/common/base.md
- Logging: api/common/logging.md
- Metrics: api/common/metrics.md
- Models: api/common/models.md
- API:
- Handler: api/common/api/handler.md
- Resolver: api/common/api/resolver.md
- Handlers:
- Overview: api/handlers/index.md
- Batch:
- Overview: api/handlers/batch/index.md
- Create: api/handlers/batch/create.md
- Model: api/handlers/batch/model.md
- Data Sync:
- Overview: api/handlers/data-sync/index.md
- Operations: api/handlers/data-sync/operations.md
- File System: api/handlers/data-sync/file-system.md
- Model: api/handlers/data-sync/model.md
- Demand:
- Overview: api/handlers/demand/index.md
- Scaffolding: api/handlers/demand/scaffolding.md
- Context Manager: api/handlers/demand/context-manager.md
- Model: api/handlers/demand/model.md
- ECR:
- Overview: api/handlers/ecr/index.md
- Replicate Image: api/handlers/ecr/replicate-image.md
- Notifications:
- Overview: api/handlers/notifications/index.md
- Router: api/handlers/notifications/router.md
- Model: api/handlers/notifications/model.md
- Notifiers:
- Base: api/handlers/notifications/notifiers/base.md
- SES: api/handlers/notifications/notifiers/ses.md
- SNS: api/handlers/notifications/notifiers/sns.md
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
extra:
version:
provider: mkdocs