using doc-forge (#1)

Reviewed-on: #1
Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
This commit is contained in:
2026-01-22 11:28:32 +00:00
committed by aetos
parent 29c1579f40
commit 6bafa435f1
36 changed files with 3739 additions and 238 deletions

View File

@@ -1,57 +1,47 @@
site_name: Aetoskia Mail Intake
site_description: Format-agnostic document reading, parsing, and scraping framework
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
- 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
- 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
- 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
- Core:
- OpenAPI-First App: openapi_first/app.md
- Route Binder: openapi_first/binder.md
- Spec Loaders: openapi_first/loader.md
- Client: openapi_first/client.md
- CLI:
- Home: openapi_first/cli.md
- Templates:
- Home: openapi_first/templates/index.md
- Health App: openapi_first/templates/health_app/index.md
- CRUD App: openapi_first/templates/crud_app/index.md
- Model App: openapi_first/templates/model_app/index.md
- Errors:
- Error Hierarchy: openapi_first/errors.md
- 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