-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
40 lines (37 loc) · 1.18 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
site_name: AsyncMonolith Docs
site_url: https://timmoth.github.io/AsyncMonolith/
site_description: Lightweight asynchronous processes and scheduling.
site_author: Timmoth
repo_url: https://github.com/Timmoth/AsyncMonolith/
edit_uri: edit/main/docs
theme:
name: readthedocs
highlightjs: true
logo: assets/logo.png
hljs_languages:
- csharp
nav:
- Overview ✅: index.md
- Quick start ▶️: quickstart.md
- Internals 🧠: internals.md
- Releases 📒: releases.md
- Warnings ⚠️: warnings.md
- Support 🛟: support.md
- Demo App ✨: demo.md
- Contributing 🙏: contributing.md
- Tests 🐞: tests.md
- Guides:
- Producing messages: guides/producing-messages.md
- Scheduling messages: guides/scheduling-messages.md
- Consuming messages: guides/consuming-messages.md
- Changing messages: guides/changing-messages.md
- Opentelemetry: guides/opentelemetry.md
- Posts:
- What is the Transactional Outbox?: posts/transactional-outbox.md
- What is the Mediator pattern?: posts/mediator.md
- What is Idempotency?: posts/idempotency.md
markdown_extensions:
- tables
- admonition
- pymdownx.details
- pymdownx.superfences