-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
55 lines (49 loc) · 1.38 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
site_name: flex-config
site_description: Configure Python apps easily
site_url: https://triaxtec.github.io/flex-config
theme:
name: 'material'
palette:
primary: 'blue'
accent: 'green'
icon:
repo: fontawesome/brands/github-alt
repo_name: triaxtec/flex-config
repo_url: https://github.com/triaxtec/flex-config
edit_uri: ''
nav:
- Intro: 'README.md'
- Tutorial: 'tutorial.md'
- Changelog: 'CHANGELOG.md'
- API:
construct_config: construct_config.md
- "Config Sources":
ConfigSource: ConfigSources/config_source.md
EnvSource: ConfigSources/env_source.md
AWSSource: ConfigSources/aws_source.md
JSONSource: ConfigSources/FileSources/json_source.md
TOMLSource: ConfigSources/FileSources/toml_source.md
YAMLSource: ConfigSources/FileSources/yaml_source.md
markdown_extensions:
- toc:
permalink: true
- markdown_include.include:
base_path: docs
- admonition
- codehilite:
linenums: true
- pymdownx.superfences
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
filters:
- "!^__"
rendering:
show_source: true
show_root_full_path: false
watch:
- flex_config