-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
91 lines (85 loc) · 2.22 KB
/
mkdocs.yml
File metadata and controls
91 lines (85 loc) · 2.22 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
site_name: vgi-rpc-go
site_description: "vgi-rpc-go: Go implementation of the vgi_rpc framework — Apache Arrow IPC-based RPC for high-performance data services"
site_url: https://vgi-rpc-go.query.farm/
repo_url: https://github.com/Query-farm/vgi-rpc-go
repo_name: Query-farm/vgi-rpc-go
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
custom_dir: docs/overrides
logo: assets/logo-hero.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.tabbed:
alternate_style: true
- pymdownx.snippets:
base_path: .
- attr_list
- md_in_html
plugins:
- search
- section-index
nav:
- Home: index.md
- Guide:
- guide/index.md
- Struct Tags: guide/struct-tags.md
- Streaming: guide/streaming.md
- ArrowSerializable: guide/arrow-serializable.md
- HTTP Transport: guide/http.md
- Error Handling: guide/errors.md
- Observability: guide/observability.md
- Introspection: guide/introspection.md
- API Reference: api.md
- Examples: examples.md