forked from dynaconf/dynaconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
111 lines (108 loc) · 2.88 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: Dynaconf - 3.3.0-dev0
site_url: https://dynaconf.com
site_description: Configuration Management for Python
site_author: Bruno Rocha
repo_name: dynaconf/dynaconf
repo_url: https://github.com/dynaconf/dynaconf
edit_uri: "https://github.com/dynaconf/dynaconf/tree/master/docs"
nav:
- Home: index.md
- Configuration: configuration.md
- Env vars: envvars.md
- Settings files: settings_files.md
- Secrets: secrets.md
- Merging: merging.md
- Dynamic Variables: dynamic.md
- CLI: cli.md
- Validation: validation.md
- Flask: flask.md
- Django: django.md
- Advanced usage: advanced.md
- FAQ: faq.md
- Development:
- development/contributing.md
- development/maintainers-manual.md
- development/code-of-conduct.md
- Reference:
- Code API:
- dynaconf: api.md
- dynaconf.strategies: strategies.md
- Changelog: CHANGELOG.md
theme:
features:
- search.suggest
- search.highlight
- search.share
- content.code.annotate
name: material
language: en
logo: img/logo_square_d.svg
favicon: img/favicon.ico
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: white
accent: teal
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: black
accent: teal
toggle:
icon: material/lightbulb
name: Switch to light mode
markdown_extensions:
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
- pymdownx.snippets
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
plugins:
- autorefs
- git-revision-date
- search:
lang: en
- mkdocstrings:
handlers:
python:
options:
show_symbol_type_heading: true
show_symbol_type_toc: true
show_root_toc_entry: true
show_object_full_path: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
docstring_section_style: table
summary: true
extra:
disqus: dynaconf
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/dynaconf/dynaconf
- icon: fontawesome/brands/twitter
link: https://twitter.com/rochacbruno
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/rochacbruno
- icon: fontawesome/brands/twitch
link: https://twitch.tv/codeshow
extra_css:
- stylesheets/mkdocstrings.css