-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
55 lines (47 loc) · 1.22 KB
/
mkdocs.yml
File metadata and controls
55 lines (47 loc) · 1.22 KB
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
site_name: Async SQLAlchemy 2 with FastAPI
repo_url: https://github.com/seapagan/fastapi_async_sqlalchemy2_example
repo_name: fastapi_async_sqlalchemy2
dev_addr: "127.0.0.1:9000"
theme:
name: material
features:
- navigation.footer
- navigation.expand
- navigation.prune
- content.code.copy
- content.code.annotate
extra:
social:
- icon: material/web
link: https://www.gnramsay.com
- icon: fontawesome/brands/github
link: https://github.com/seapagan
- icon: fontawesome/brands/twitter
link: https://twitter.com/gnramsay-dev
copyright: © 2023-2024 Grant Ramsay (Seapagan)
plugins:
- search
- minify:
minify_html: true
minify_css: true
minify_js: true
htmlmin_opts:
remove_comments: true
markdown_extensions:
- admonition
- pymdownx.snippets
- pymdownx.superfences
- md_in_html
- pymdownx.highlight:
linenums: true
auto_title: false
- attr_list
nav:
- Home: index.md
- Usage: usage.md
- Code Description:
- Introduction: explanation/intro.md
- Database Setup: explanation/database.md
- Models and Schemas: explanation/models.md
- Application and Routes: explanation/main.md
- License: license.md