forked from open-feature/flagd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
127 lines (124 loc) · 4.76 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
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
- content.tooltips
- navigation.instant
- navigation.tracking
- navigation.indexes
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:
url_download: true
- 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:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.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'
- 'OpenFeature Providers':
- 'providers/index.md'
- 'Go': 'providers/go.md'
- 'Java': 'providers/java.md'
- 'Node.JS': 'providers/nodejs.md'
- 'PHP': 'providers/php.md'
- '.NET': 'providers/dotnet.md'
- 'Python': 'providers/python.md'
- 'Web': 'providers/web.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'
- 'gRPC sync service': 'reference/grpc-sync-service.md'
- 'OFREP service': 'reference/flagd-ofrep.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'
- 'Schema': 'reference/schema.md'
- 'Monitoring': 'reference/monitoring.md'
- 'Specifications':
- 'Providers': 'reference/specifications/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': 'reference/openfeature-operator/overview.md'
- 'Naming': 'reference/naming.md'
- 'FAQ': 'faq.md'
- 'Troubleshooting': 'troubleshooting.md'
plugins:
# Disabling social until https://github.com/squidfunk/mkdocs-material/issues/6983 is resolved
# - social
- search
# https://github.com/mondeja/mkdocs-include-markdown-plugin
- include-markdown
# https://github.com/mkdocs/mkdocs-redirects
- redirects:
redirect_maps:
'reference/providers.md': 'providers/index.md'
'reference/openfeature-operator/installation.md': 'https://github.com/open-feature/open-feature-operator/blob/main/docs/installation.md'
'reference/openfeature-operator/crds/featureflag.md': 'https://github.com/open-feature/open-feature-operator/blob/main/docs/feature_flag.md'
'reference/openfeature-operator/crds/featureflagsource.md': https://github.com/open-feature/open-feature-operator/blob/main/docs/feature_flag_source.md
'reference/specifications/rpc-providers.md': 'reference/specifications/providers.md#rpc-providers'
'reference/specifications/in-process-providers.md': 'reference/specifications/providers.md#in-process-providers'