66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
site_name: MetaORM
|
|
site_description: Async repository layer over SQLModel
|
|
site_url: https://olegyurchik.github.io/MetaORM/
|
|
site_dir: .site
|
|
repo_url: https://github.com/OlegYurchik/MetaORM
|
|
repo_name: OlegYurchik/MetaORM
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: default
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- navigation.expand
|
|
- search.suggest
|
|
- search.highlight
|
|
- content.code.copy
|
|
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
paths: [.]
|
|
options:
|
|
docstring_style: google
|
|
show_source: true
|
|
show_root_heading: true
|
|
show_category_heading: true
|
|
|
|
markdown_extensions:
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- tables
|
|
- toc:
|
|
permalink: true
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- User Guide:
|
|
- Getting Started: guide/getting-started.md
|
|
- Tables & DTOs: guide/tables-dto.md
|
|
- Repositories: guide/repositories.md
|
|
- Filters & Pagination: guide/filters.md
|
|
- Transactions: guide/transactions.md
|
|
- Multi-Repo Transactions: guide/container.md
|
|
- Eager Loading: guide/relationships.md
|
|
- API Reference:
|
|
- metaorm: api.md
|
|
- Examples: examples.md
|