-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
69 lines (66 loc) · 3.02 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
site_name: Danube Messaging documentation
repo_url: https://github.com/danube-messaging/danube
repo_name: danube-messaging/danube
extra:
analytics:
provider: google
property: G-2XEY5RCVVB
nav:
- Home: index.md
- Getting Started:
- Run Danube on VMs or local machine: getting_started/Danube_local.md
- Run Danube on Docker: getting_started/Danube_docker_compose.md
- Run Danube on Kubernetes Cluster: getting_started/Danube_kubernetes.md
- Architecture:
- Danube architecture: architecture/architecture.md
- Messages: architecture/messages.md
- Topics: architecture/topics.md
- Subscriptions: architecture/subscriptions.md
- Dispatch Strategy: architecture/dispatch_strategy.md
- Danube service components: architecture/internal_danube_services.md
- Queuing vs Pub-Sub (fan-out) messaging: architecture/Queuing_PubSub_messaging.md
- PubSub vs Streaming: architecture/PubSub_messaging_vs_Streaming.md
- Client Libraries:
- Danube Clients: client_libraries/clients.md
- Setup: client_libraries/setup.md
- Create Producer: client_libraries/producer.md
- Create Consumer: client_libraries/consumer.md
- Danube CLIs:
- Danube Admin CLI:
- Brokers: danube_clis/danube_admin/brokers.md
- Namespaces: danube_clis/danube_admin/namespaces.md
- Topics: danube_clis/danube_admin/topics.md
- Danube CLI:
- Producer: danube_clis/danube_cli/producer.md
- Consumer: danube_clis/danube_cli/consumer.md
- Development:
- Development Environment: development/dev_environment.md
- Metadata Resources: development/internal_resources.md
theme:
name: material
logo: assets/danube.png
features:
- content.tabs.link
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true