-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
199 lines (191 loc) · 5.74 KB
/
mkdocs.yml
File metadata and controls
199 lines (191 loc) · 5.74 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
site_name: sql-redis
site_description: SQL to Redis FT.SEARCH and FT.AGGREGATE translator.
site_url: https://redis-developer.github.io/sql-redis/
repo_url: https://github.com/redis-developer/sql-redis
repo_name: redis-developer/sql-redis
edit_uri: edit/main/docs/
copyright: Copyright © 2026 Redis Inc.
docs_dir: docs
theme:
name: material
language: en
logo: assets/redis-logo-script.svg
favicon: assets/favicon.png
font:
text: Space Grotesk
code: Space Mono
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.action.edit
- content.action.view
- content.tooltips
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
extra:
status:
experimental: Experimental
social:
- icon: fontawesome/brands/github
link: https://github.com/redis-developer/sql-redis
- icon: fontawesome/brands/python
link: https://pypi.org/project/sql-redis/
extra_css:
- stylesheets/redis-brand.css
plugins:
- search
- autorefs
- section-index
- git-revision-date-localized:
enable_creation_date: false
type: timeago
fallback_to_build_date: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
docstring_style: google
show_source: true
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
members_order: source
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
merge_init_into_class: true
docstring_section_style: table
inherited_members: true
filters:
- "!^_"
- llmstxt:
full_output: llms-full.txt
sections:
Concepts:
- concepts/*.md
User Guide:
- user_guide/*.md
- user_guide/how_to_guides/*.md
API Reference:
- api/*.md
For AI Agents:
- for-ais-only/*.md
- redirects:
redirect_maps: {}
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.betterem
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
watch:
- sql_redis
- AGENTS.md
nav:
- Home: index.md
- Concepts:
- concepts/index.md
- Architecture: concepts/architecture.md
- Why SQL?: concepts/why-sql.md
- Why sqlglot?: concepts/why-sqlglot.md
- Schema-aware translation: concepts/schema-aware-translation.md
- FT.SEARCH vs FT.AGGREGATE: concepts/search-vs-aggregate.md
- Parameter substitution: concepts/parameter-substitution.md
- Vector substitution: concepts/vector-substitution.md
- Async invariants: concepts/async-invariants.md
- Result shape: concepts/result-shape.md
- Testing philosophy: concepts/testing-philosophy.md
- User Guide:
- user_guide/index.md
- Installation: user_guide/installation.md
- Getting Started: user_guide/getting-started.md
- How-To Guides:
- user_guide/how_to_guides/index.md
- Use parameters: user_guide/how_to_guides/use-parameters.md
- Vector search: user_guide/how_to_guides/vector-search.md
- Text search: user_guide/how_to_guides/text-search.md
- GEO queries: user_guide/how_to_guides/geo-queries.md
- Date queries: user_guide/how_to_guides/date-queries.md
- Missing fields: user_guide/how_to_guides/missing-fields.md
- Lazy vs eager schemas: user_guide/how_to_guides/lazy-vs-eager-schemas.md
- Async usage: user_guide/how_to_guides/async-usage.md
- Examples: examples/index.md
- API Reference:
- api/index.md
- Translator: api/translator.md
- Schema: api/schema.md
- Executor: api/executor.md
- SQL Syntax: api/sql-syntax.md
- For AI Agents:
- for-ais-only/index.md
- Repository map: for-ais-only/REPOSITORY_MAP.md
- Build and test: for-ais-only/BUILD_AND_TEST.md
- Failure modes: for-ais-only/FAILURE_MODES.md
- Changelog: https://github.com/redis-developer/sql-redis/releases