Files
MetaORM/mkdocs.yml
Oleg Yurchik be7b637003
Some checks failed
docs / deploy (push) Has been cancelled
fix: correct site_url casing to MetaORM for GitHub Pages
2026-08-17 14:42:40 +03:00

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