forked from RedisGears/RedisGears
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
85 lines (73 loc) · 1.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
site_name: RedisGears - Programmable engine for data processing in Redis
site_url: http://redisgears.io
repo_url: https://github.com/RedisGears/RedisGears
repo_name: RedisGears/RedisGears
google_analytics:
- 'UA-92003007-1'
- 'auto'
extra_javascript:
- gtm.js
use_directory_urls: false
theme:
name: 'material'
language: 'en'
logo: 'images/RedisGears.png'
favicon: 'images/favicon.png'
palette:
primary: 'indigo'
accent: 'red'
font:
text: 'Roboto'
code: 'Roboto Mono'
feature:
tabs: false
nav:
- 'Home': 'index.md'
- 'Quickstart': 'quickstart.md'
- 'Introduction': 'intro.md'
- 'Reference':
- 'Runtime': 'runtime.md'
- 'Functions': 'functions.md'
- 'Readers': 'readers.md'
- 'Operations': 'operations.md'
- 'Commands': 'commands.md'
- 'RedisAI': 'redisai.md'
- 'Configuration': 'configuration.md'
- 'Examples': 'examples.md'
- 'Clients': 'clients.md'
- 'Design':
- 'Isolation Technics': 'isolation.md'
- 'Glossary': 'glossary.md'
- 'Contributing': 'contrib.md'
markdown_extensions:
- admonition
- codehilite:
guess_lang: False
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.superfences
- toc:
permalink: True
plugins:
- search
- include:
src_path: docs/snippets
- modules-template:
try-for-free: false
modules:
- name: 'Search'
link: '/redisearch'
- name: 'Time Series'
link: '/redistimeseries'
- name: 'Bloom'
link: '/redisbloom'
- name: 'Graph'
link: '/redisgraph'
- name: 'JSON'
link: '/redisjson'
- name: 'AI'
link: '/redisai'
- versions-menu:
exclude-regexes:
- '0\.[1-4]'
include-regex: '([0-9]+)\.([0-9]+)'