-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmkdocs.yml
More file actions
116 lines (111 loc) · 3.46 KB
/
Copy pathmkdocs.yml
File metadata and controls
116 lines (111 loc) · 3.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# MkDocs Material configuration for the FastAdmin documentation site.
# Built and deployed to GitHub Pages by .github/workflows/docs.yml.
site_name: FastAdmin
site_description: >-
FastAdmin is an easy-to-use admin dashboard for FastAPI, Flask and Django,
inspired by Django Admin. Works with Tortoise ORM, Django ORM, SQLAlchemy,
Pony ORM and Yara ORM.
site_author: Seva D
# Canonical site URL — drives sitemap.xml, canonical <link> tags and social cards.
site_url: https://vsdudakov.github.io/fastadmin/
repo_name: vsdudakov/fastadmin
repo_url: https://github.com/vsdudakov/fastadmin
edit_uri: edit/main/docs/
copyright: Copyright © 2026 Seva D — MIT License
theme:
name: material
language: en
favicon: assets/images/favicon.png
icon:
repo: fontawesome/brands/github
logo: material/view-dashboard
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- toc.follow
plugins:
- search
# Generates Open Graph / Twitter social cards per page (needs the
# `[imaging]` extra + system Cairo). Enabled only in CI (the docs workflow
# installs Cairo); skipped locally so `mkdocs serve` works without it.
- social:
enabled: !ENV [CI, false]
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
# Snippets embed files from the repo root (e.g. the runnable examples/ apps
# and CHANGELOG.md) so docs never drift from the code.
- pymdownx.snippets:
base_path: ["."]
check_paths: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/vsdudakov/fastadmin
- icon: fontawesome/brands/python
link: https://pypi.org/project/fastadmin/
- icon: fontawesome/solid/heart
link: https://github.com/sponsors/vsdudakov
name: Sponsor FastAdmin
generator: false
nav:
- Home: index.md
- Getting started:
- Installation: getting-started/installation.md
- Quick start: getting-started/quickstart.md
- Guides:
- Settings: guides/settings.md
- Registering models: guides/registering-models.md
- Authentication: guides/authentication.md
- Model admins: guides/model-admins.md
- Form widgets & file uploads: guides/form-widgets.md
- Inline admins: guides/inline-admins.md
- Dashboard widgets: guides/dashboard-widgets.md
- API reference: api-reference.md
- Changelog: changelog.md
- Contributing: contributing.md