-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
37 lines (33 loc) · 876 Bytes
/
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
site_name: Duck-ORM
site_description: Async database support for Python.
google_analytics:
- UA-72514911-3
- auto
theme:
name: "material"
palette:
primary: indigo
repo_name: richecr/duck-orm
repo_url: https://github.com/richecr/duck-orm
# edit_uri: ""
nav:
- Introduction: "index.md"
- Getting Started: "getting_started.md"
- Contributing: "CONTRIBUTING.md"
- Models:
- Definition: "models/index.md"
- Methods: "models/methods.md"
- Fields:
- Field Types: "fields/index.md"
- Relationships:
- Relations: "fields/relations.md"
- ForeignKey: "fields/foreignkey.md"
- OneToOne: "fields/one_to_one.md"
- OneToMany: "fields/one_to_many.md"
- ManyToMany: "fields/many_to_many.md"
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences
- pymdownx.highlight:
linenums: true