-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
94 lines (89 loc) · 2.45 KB
/
Copy pathmkdocs.yml
File metadata and controls
94 lines (89 loc) · 2.45 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
site_name: vgi-rpc C++
site_description: "vgi-rpc C++: a C++20 RPC framework built on Apache Arrow IPC — unary, producer, and exchange method patterns over pipe-based transport"
site_url: https://vgi-rpc-cpp.query.farm/
repo_url: https://github.com/Query-farm/vgi-rpc-cpp
repo_name: Query-farm/vgi-rpc-cpp
copyright: "© 2026 <a href=\"https://query.farm\">Query.Farm LLC</a>"
extra:
social:
- icon: material/web
link: https://vgi-rpc.query.farm
name: VGI-RPC
- icon: material/web
link: https://query.farm
name: Query.Farm
- icon: fontawesome/brands/github
link: https://github.com/Query-farm
name: Query.Farm on GitHub
extra_css:
- stylesheets/extra.css
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.footer
- content.code.copy
- search.highlight
- search.suggest
- toc.follow
font:
text: Inter
code: JetBrains Mono
custom_dir: docs/overrides
logo: assets/logo.png
favicon: assets/favicon.ico
icon:
repo: fontawesome/brands/github
markdown_extensions:
- toc:
permalink: true
toc_depth: 3
- tables
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: "."
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
nav:
- Home: index.md
- Getting Started: getting-started.md
- Examples:
- examples/index.md
- Hello World: examples/hello-world.md
- Calculator: examples/calculator.md
- Streaming: examples/streaming.md
- API Reference:
- api/index.md
- Server: api/server.md
- Request: api/request.md
- Result: api/result.md
- Streaming: api/stream.md
- CallContext: api/call-context.md
- Wire Protocol: api/wire.md
- Utilities: api/utilities.md