-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathzensical.toml
More file actions
129 lines (101 loc) · 3.43 KB
/
Copy pathzensical.toml
File metadata and controls
129 lines (101 loc) · 3.43 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
117
118
119
120
121
122
123
124
125
126
127
128
129
[project]
site_name = "CRUDAdmin"
site_description = "Modern admin interface for FastAPI with built-in authentication, event tracking, and security features."
site_author = "Igor Benav"
site_url = "https://benavlabs.github.io/crudadmin"
docs_dir = "docs"
site_dir = "site"
copyright = "© 2026 Benav Labs"
extra_css = ["stylesheets/extra.css"]
repo_name = "benavlabs/crudadmin"
repo_url = "https://github.com/benavlabs/crudadmin"
edit_uri = "edit/main/docs/"
# ==============================================================================
# Theme
# ==============================================================================
[project.theme]
variant = "modern"
logo = "assets/logo.png"
favicon = "assets/logo.png"
font.text = "Ubuntu"
features = [
"navigation.instant",
"navigation.instant.prefetch",
"navigation.tabs",
"navigation.indexes",
"search.suggest",
"content.code.copy",
]
[[project.theme.palette]]
scheme = "default"
primary = "custom"
accent = "custom"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "custom"
accent = "custom"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
# ==============================================================================
# Navigation
# ==============================================================================
[[project.nav]]
"CRUDAdmin" = "index.md"
[[project.nav]]
"Quick-Start" = "quick-start.md"
[[project.nav]]
"Usage" = [
{ "Overview" = "usage/overview.md" },
{ "Basic Configuration" = "usage/configuration.md" },
{ "Session Backends" = "usage/session-backends.md" },
{ "Adding Models" = "usage/adding-models.md" },
{ "Managing Admin Users" = "usage/admin-users.md" },
{ "Using the Interface" = "usage/interface.md" },
{ "Common Patterns" = "usage/common-patterns.md" },
]
[[project.nav]]
"Advanced" = [
{ "Overview" = "advanced/overview.md" },
]
[[project.nav]]
"API Reference" = [
{ "Overview" = "api/overview.md" },
{ "CRUDAdmin" = "api/crud_admin.md" },
{ "ModelView" = "api/model_view.md" },
{ "AdminSite" = "api/admin_site.md" },
{ "Session Management" = "api/session.md" },
{ "Event System" = "api/events.md" },
]
[[project.nav]]
"Community" = [
{ "Overview" = "community/overview.md" },
{ "Contributing" = "community/CONTRIBUTING.md" },
{ "Code of Conduct" = "community/CODE_OF_CONDUCT.md" },
{ "License" = "community/LICENSE.md" },
]
# ==============================================================================
# Markdown extensions
# ==============================================================================
[[project.markdown_extensions]]
admonition = {}
[[project.markdown_extensions]]
"codehilite" = {}
[[project.markdown_extensions]]
"toc" = { permalink = true }
[[project.markdown_extensions]]
"pymdownx.details" = {}
[[project.markdown_extensions]]
"pymdownx.highlight" = { anchor_linenums = true, line_spans = "__span", pygments_lang_class = true }
[[project.markdown_extensions]]
"pymdownx.inlinehilite" = {}
[[project.markdown_extensions]]
"pymdownx.snippets" = {}
[[project.markdown_extensions]]
"pymdownx.superfences" = {}
# ==============================================================================
# Plugins
# ==============================================================================
[[project.plugins]]
"mkdocstrings" = { config = { handlers = { python = { options = { show_source = true } } } } }