-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
110 lines (103 loc) · 2.98 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
---
nav:
- Home: index.md
- Installation:
- Quick Start: quick-start.md
- Install ServeStatic on your...:
- ASGI Project: asgi.md
- WSGI Project: wsgi.md
- Django Project: django.md
- Reference:
- ServeStaticASGI: servestatic-asgi.md
- ServeStatic: servestatic.md
- Django:
- Settings: django-settings.md
- FAQ: django-faq.md
- About:
- Changelog: changelog.md
# - Contributor Guide:
# - Code: about/code.md
# - Docs: about/docs.md
- Community:
- GitHub Discussions: https://github.com/Archmonger/ServeStatic/discussions
- License: license.md
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/white-balance-sunny
name: Switch to light mode
primary: black
accent: blue
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: black
accent: blue
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- content.code.copy
- search.highlight
icon:
repo: fontawesome/brands/github
admonition:
note: fontawesome/solid/note-sticky
markdown_extensions:
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
linenums: true
- pymdownx.superfences
- pymdownx.details
- pymdownx.inlinehilite
- admonition
- attr_list
- md_in_html
- pymdownx.keys
plugins:
- search
- include-markdown
- git-authors
- minify:
minify_html: true
minify_js: true
minify_css: true
cache_safe: true
- git-revision-date-localized:
fallback_to_build_date: true
- spellcheck:
known_words: dictionary.txt
allow_unicode: no
ignore_code: yes
extra:
generator: false
version:
provider: mike
extra_css:
- assets/css/main.css
watch:
- ../docs
- ../README.md
- ../CHANGELOG.md
- ../LICENSE.md
site_name: ServeStatic
site_author: Archmonger
site_description: Production-grade static file server for Python web apps.
copyright: '©<div id="year"></div> <script>document.getElementById("year").innerHTML = new Date().getFullYear();</script> Archmonger'
repo_url: https://github.com/Archmonger/ServeStatic
site_url: https://archmonger.github.io/ServeStatic/
repo_name: ServeStatic (GitHub)
edit_uri: edit/main/docs/src
docs_dir: src