-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
112 lines (103 loc) · 2.71 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
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
site_name: Blitz
site_url: https://paperz-org.github.io/blitz/
repo_name: Paperz-org/blitz
repo_url: https://github.com/Paperz-org/blitz
theme:
name: material
favicon: "images/logo.png"
icon:
repo: fontawesome/brands/github-alt
annotation: material/plus-circle
logo: "images/logo.png"
palette:
- media: "(prefers-color-scheme: dark)"
primary: black
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
- media: "(prefers-color-scheme: light)"
primary: blue grey
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.tabs
- navigation.footer
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Paperz-org
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js
plugins:
search: null
mkdocstrings:
handlers:
python:
options:
extensions:
- griffe_typingdoc
show_root_heading: true
show_if_no_docstring: true
preload_modules:
- httpx
- starlette
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters:
- "!^_"
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- mkdocs-typer
nav:
- Get Started:
- Welcome to Blitz: index.md
- Features: features.md
- Installation: installation.md
- Blitz file:
- Overview: blitzfile/index.md
- Config: blitzfile/config.md
- Resources: blitzfile/resources.md
- Relationships: blitzfile/relationships.md
- Blitz file reference: blitzfile/reference.md
- CLI:
- Commands:
- Create: cli/create.md
- Start: cli/start.md
- List: cli/list.md
- Release: cli/release.md
- Clone: cli/clone.md
- References: cli/references.md
- API:
- Blitz API: api/index.md
- Dashboard:
- Overview: dashboard/index.md
- Admin: dashboard/admin.md
- Swagger: dashboard/swagger.md
- Blitz File Editor: dashboard/blitz_file.md
- GPT Builder: dashboard/gpt_builder.md
- Diagram: dashboard/diagram.md
- Logs: dashboard/logs.md