This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
81 lines (73 loc) · 2.3 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
site_name: Melange
repo_name: Rydra/melange
repo_url: https://github.com/Rydra/melange
# Config file inspired by:
# - https://github.com/mkdocstrings/mkdocstrings/blob/master/mkdocs.yml
# - https://github.com/squidfunk/mkdocs-material/blob/master/mkdocs.yml
# - https://github.com/tiangolo/fastapi/blob/master/docs/en/mkdocs.yml
theme:
name: material
features:
- content.code.annotate
- navigation.tabs
- navigation.top
palette:
- scheme: default
primary: deep orange
accent: light blue
toggle:
icon: material/lightbulb
name: Switch to light mode
- scheme: slate
primary: deep orange
accent: light blue
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
extra_css:
- css/mkdocstrings.css
nav:
- Home:
- Overview: index.md
- Getting started:
- Tutorial: tutorial/getting-started.md
- Building blocks:
- Messaging Backends: components/messaging-backends.md
- Serializers: components/serialization.md
- Message Dispatcher and Consumers: components/consumers.md
- Publishers: components/publishers.md
- Factory: factory.md
- Advanced topics:
- Default messaging backend: components/advanced-topics/default-mb.md
- Message Deduplication: components/advanced-topics/message-dedup.md
- Behind the scenes: components/advanced-topics/behind-scenes.md
- Testing:
- Testing with Melange: testing.md
- Examples:
- Overview: examples/index.md
- Payment Service: examples/payment-service.md
- SAGA choreography: examples/saga-choreography.md
- Roadmap:
- Roadmap: roadmap.md
- External links: mixed-bag.md
- Code Reference:
- Publishers: api-reference/publishers.md
- Consumers: api-reference/consumers.md
- Serializers: api-reference/serializers.md
- Messaging Backends: api-reference/messaging-backends.md
- Factory: api-reference/factory.md