forked from open-feature/flagd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
104 lines (101 loc) · 3.64 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
site_name: flagd
site_description: A feature flag daemon with a Unix philosophy
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/toggle-switch-outline
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/toggle-switch-off
name: Switch to light mode
logo: assets/logo-white.svg
favicon: assets/logo-white.svg
icon:
repo: fontawesome/brands/github
features:
- navigation.footer
- content.action.edit
- content.code.copy
- search.suggest
- search.highlight
- search.share
extra_css:
- assets/extra.css
docs_dir: docs
repo_url: https://github.com/open-feature/flagd
repo_name: open-feature/flagd
edit_uri: edit/main/docs/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
# linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- tables
- attr_list
- md_in_html
- pymdownx.emoji:
# we are using an older emoji extension because the newest (suggested in docs) doesn't work with Python < 3.10
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
nav:
- 'Introduction': 'index.md'
- 'Quick start': 'quick-start.md'
- 'Installation': 'installation.md'
- 'Playground': 'playground/index.md'
- 'Concepts':
- 'Feature Flagging': 'concepts/feature-flagging.md'
- 'Syncs': 'concepts/syncs.md'
- 'Architecture': 'architecture.md'
- 'Reference':
- 'CLI':
- 'Overview': 'reference/flagd-cli/flagd.md'
- 'Start': 'reference/flagd-cli/flagd_start.md'
- 'Version': 'reference/flagd-cli/flagd_version.md'
- 'Sync Configuration': 'reference/sync-configuration.md'
- 'Flag Definitions':
- 'Definition Overview': 'reference/flag-definitions.md'
- 'Custom Operations':
- 'Fractional': 'reference/custom-operations/fractional-operation.md'
- 'Semantic Version': 'reference/custom-operations/semver-operation.md'
- 'String Comparison': 'reference/custom-operations/string-comparison-operation.md'
- 'Providers': 'reference/providers.md'
- 'Monitoring': 'reference/monitoring.md'
- 'Specifications':
- 'RPC Providers': 'reference/specifications/rpc-providers.md'
- 'In-Process Providers': 'reference/specifications/in-process-providers.md'
- 'Protobuf Schemas': 'reference/specifications/protos.md'
- 'Custom Operations':
- 'Fractional Specification': 'reference/specifications/custom-operations/fractional-operation-spec.md'
- 'Semantic Version Specification': 'reference/specifications/custom-operations/semver-operation-spec.md'
- 'String Comparison Specification': 'reference/specifications/custom-operations/string-comparison-operation-spec.md'
- 'OpenFeature Operator':
- 'Installation': 'reference/openfeature-operator/installation.md'
- 'FeatureFlag': 'reference/openfeature-operator/crds/featureflag.md'
- 'FeatureFlagSource': 'reference/openfeature-operator/crds/featureflagsource.md'
- 'Naming': 'reference/naming.md'
- 'FAQ': 'faq.md'
- 'Troubleshooting': 'troubleshooting.md'
plugins:
- social
- search