48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
site_name: Aetoskia OpenAPI First
|
|
site_description: Contract-first FastAPI application bootstrap and specification-driven HTTP client.
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: slate
|
|
primary: deep purple
|
|
accent: cyan
|
|
font:
|
|
text: Inter
|
|
code: JetBrains Mono
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.expand
|
|
- navigation.top
|
|
- navigation.instant
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
paths:
|
|
- .
|
|
options:
|
|
docstring_style: google
|
|
show_source: false
|
|
show_signature_annotations: true
|
|
separate_signature: true
|
|
merge_init_into_class: true
|
|
inherited_members: true
|
|
annotations_path: brief
|
|
show_root_heading: true
|
|
group_by_category: true
|
|
|
|
nav:
|
|
- Home: openapi_first/index.md
|
|
- Application Bootstrap:
|
|
- openapi_first/app.md
|
|
- openapi_first/binder.md
|
|
- Core Utilities:
|
|
- openapi_first/loader.md
|
|
- openapi_first/errors.md
|
|
- OpenAPI Client:
|
|
- openapi_first/client.md
|