-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
92 lines (92 loc) · 2.98 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
82
83
84
85
86
87
88
89
90
91
92
site_name: LeanCode CoreLibrary
repo_url: https://github.com/leancodepl/corelibrary
docs_dir: ./docs
theme:
logo: ./img/leancode_logo_white.png
favicon: ./img/leancode_logo_black.png
name: material
features:
- navigation.indexes
- content.code.copy
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- footnotes
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Overview: ./README.md
- Quick start: ./quick_start/index.md
- CQRS:
- ./cqrs/index.md
- Command:
- ./cqrs/command/index.md
- Query:
- ./cqrs/query/index.md
- Operation:
- ./cqrs/operation/index.md
- Pipeline:
- ./cqrs/pipeline/index.md
- Adding custom middlewares: ./cqrs/pipeline/adding_custom_middlewares.md
- Avoid committing transactions in handlers: ./cqrs/pipeline/avoid_commiting_transactions_in_handlers.md
- Authorization:
- ./cqrs/authorization/index.md
- Validation:
- ./cqrs/validation/index.md
- Local execution:
- ./cqrs/local_execution/index.md
- Domain:
- ./domain/index.md
- Aggregate:
- ./domain/aggregate/index.md
- Entity:
- ./domain/entity/index.md
- Value object:
- ./domain/value_object/index.md
- Domain event:
- ./domain/domain_event/index.md
- Id:
- ./domain/id/index.md
- Time provider:
- ./domain/time_provider/index.md
- External integrations:
- Authorization - Ory Kratos:
- ./external_integrations/authorization_ory_kratos/index.md
- Handling webhooks: ./external_integrations/authorization_ory_kratos/handling_webhooks.md
- Emails - SendGrid:
- ./external_integrations/emails_sendgrid/index.md
- Feature flags - ConfigCat:
- ./external_integrations/feature_flags_configcat/index.md
- Logging - Serilog:
- ./external_integrations/logging_serilog/index.md
- Sanitization: ./external_integrations/logging_serilog/sanitization.md
- Messaging - MassTransit:
- ./external_integrations/messaging_masstransit/index.md
- Handling events: ./external_integrations/messaging_masstransit/handling_events.md
- Observability - OpenTelemetry:
- ./external_integrations/observability_open_telemetry/index.md
- Push notifications - FCM:
- ./external_integrations/push_notifications_fcm/index.md
- API Explorer/Swagger:
- ./external_integrations/api_explorer/index.md
- Features:
- Audit logs:
- ./features/audit_logs/index.md
- Force update:
- ./features/force_update/index.md
- Localization:
- ./features/localization/index.md
- Tests:
- Faking time:
- ./tests/faking_time/index.md
- Integration tests:
- ./tests/integration_tests/index.md
- CoreLibrary 8.0 changes overview & migration guide:
- ./v8_migration_guide/index.md