forked from quixio/quix-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
43 lines (40 loc) · 1.56 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
site_name: 'Quix Docs'
site_description: 'Quix Streams Documentation'
repo_url: https://github.com/quixio/quix-streams/docs
edit_uri: tree/master/docs
theme:
name: 'material'
markdown_extensions:
- attr_list
- admonition
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- 'Introduction': '../client-library-intro.html'
- 'Quickstart': 'quickstart.md'
- 'Using Quix Streams': 'using.md'
- 'Kafka and Quix Streams': 'kafka.md'
- 'Features overview':
- 'Streaming context': 'features/streaming-context.md'
- 'Built-in buffers': 'features/builtin-buffers.md'
- 'Support for Data Frames': 'features/data-frames.md'
- 'Message splitting': 'features/message-splitting.md'
- 'Data serialization': 'features/data-serialization.md'
- 'Multiple data types': 'features/multiple-data-types.md'
- 'Checkpointing': 'features/checkpointing.md'
- 'Horizontal scaling': 'features/horizontal-scaling.md'
- 'Connecting to a broker': 'connect.md'
- 'App management': 'app-management.md'
- 'Publishing data': 'publish.md'
- 'Subscribing to data': 'subscribe.md'
- 'Processing data': 'process.md'
- 'State management': 'state-management.md'
- 'Migration guide': 'versionmigration.md'
- 'API Reference':
- 'Python': 'api-reference/python/quixstreams.md'
- 'C#': 'api-reference/csharp/QuixStreams.Streaming.md'
# - 'Local environment':
# - 'Set up local environment': 'python-setup.md'
# - 'Set up docker environment': 'docker-setup.md'