-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
60 lines (59 loc) · 1.82 KB
/
mkdocs.yml
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
---
site_name: rorm documentation
theme:
name: material
features:
- content.tabs.link
- content.code.annotate
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
repo_url: https://github.com/rorm-orm/rorm
edit_uri: https://github.com/rorm-orm/docs/edit/main/docs/
repo_name: rorm-orm/rorm
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
nav:
- Home: index.md
- Migrations:
- Migrations: migrations/migrations.md
- Make Migrations: migrations/makemigrations.md
- Migration File Format: migrations/migration_files.md
- Linter: migrations/linter.md
- Internal Model Representation: migrations/internal_model_representation.md
- DORM:
- Getting Started: dorm/getting_started.md
- Model Declaration: dorm/model_declaration.md
- Associations: dorm/associations.md
- RORM:
- Getting Started: rorm/getting_started.md
- Project Setup: rorm/project_setup.md
- Model Declaration: rorm/model_declaration.md
- Relations: rorm/relations.md
- CRUD: rorm/crud.md
- Transactions: rorm/transactions.md
- Field access syntax: rorm/field_access_syntax.md
- Full Example: rorm/full_example.md
- Developer information:
- Style Guidelines: developer/guidelines.md