-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
62 lines (62 loc) · 1.47 KB
/
mkdocs.yml
File metadata and controls
62 lines (62 loc) · 1.47 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
site_name: Flaggle
site_description: Feature flag management for Python, with first-class FastAPI integration.
site_author: Flaggle Contributors
repo_url: https://github.com/Flaggle/flaggle-python
repo_name: flaggle-python
edit_uri: edit/main/docs/
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.tabs.link
- toc.integrate
palette:
- scheme: default
primary: indigo
accent: indigo
- scheme: slate
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
plugins:
- search
- awesome-pages
- git-revision-date-localized:
fallback_to_build_date: true
- codeinclude
- section-index
- macros
- mkdocstrings
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- toc:
permalink: true
nav:
- Overview: index.md
- Getting Started: first-steps.md
- Configuration: configuration.md
- API Reference:
- Flaggle: api/flaggle.md
- Flag: api/flag.md
- Supported Operations: supported-operations.md
- Integrations:
- FastAPI: integrations/fastapi.md
- Flask: integrations/flask.md
- Django: integrations/django.md
- Typer: integrations/typer.md
- Other: integrations/other.md
- Advanced Usage: advanced.md
- Tips & FAQ: faq.md
- Contributing: contributing.md
- Changelog: changelog.md
- License: license.md