-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
56 lines (48 loc) · 1.57 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
site_name: Flask-Tortoise
site_description: Adds asynchronous Tortoise ORM support for flask app.
site_url: https://marktennyson.github.io/Flask-Tortoise
dev_addr: 127.0.0.1:8080
theme:
name: material
palette:
- scheme: default
primary: teal
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
- scheme: slate
primary: teal
accent: amber
toggle:
icon: material/lightbulb
name: Switch to dark mode
logo: https://camo.githubusercontent.com/ac5549cf1ea281ad3422b09f0de31cffa09d95f817ff8f95d15865cf15ab8a48/68747470733a2f2f746f72746f6973652d6f726d2e72656164746865646f63732e696f2f656e2f6c61746573742f5f7374617469632f746f72746f6973652e706e67
favicon: https://camo.githubusercontent.com/ac5549cf1ea281ad3422b09f0de31cffa09d95f817ff8f95d15865cf15ab8a48/68747470733a2f2f746f72746f6973652d6f726d2e72656164746865646f63732e696f2f656e2f6c61746573742f5f7374617469632f746f72746f6973652e706e67
features:
- search.suggest
- search.highlight
- content.tabs.link
icon:
repo: fontawesome/brands/github-alt
repo_name: marktennyson/Flask-Tortoise
repo_url: https://github.com/marktennyson/Flask-Tortoise
plugins:
- search
- markdownextradata:
data: data
markdown_extensions:
- attr_list
- toc:
permalink: true
- pymdownx.highlight:
linenums: false
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.superfences
nav:
- Flask-Tortoise: index.md
- QuerySet: queryset.md
- Examples: examples.md
- Tutorial: tutorial.md
- Command Line: cli.md