-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
306 lines (298 loc) · 11.2 KB
/
mkdocs.yml
File metadata and controls
306 lines (298 loc) · 11.2 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Ossum Technologies
site_url: https://ossum.tech/
site_description: >-
Documentation for RIDDL - a specification language for large, distributed,
reactive systems. Learn to model internet-scale applications with DDD patterns.
repo_url: https://github.com/ossuminc/ossum.tech
repo_name: ossuminc/ossum.tech
edit_uri: edit/main/docs/
copyright: >
Copyright © 2019-2026 Ossum Inc. -
<a href="#__consent">Change cookie settings</a>
theme:
name: material
custom_dir: overrides
logo: assets/images/ossum_logo_and_name-01.png
favicon: assets/images/favicon.jpg
font:
text: Encode Sans
code: Roboto Mono
features:
- announce.dismiss
- content.action.edit
- content.tooltips
- header.autohide
- navigation.footer
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- search.suggest
- search.share
- search.highlight
icon:
admonition:
note: fontawesome/solid/note-sticky
abstract: fontawesome/solid/book
info: fontawesome/solid/circle-info
tip: fontawesome/solid/bullhorn
hint: fontawesome/solid/bullhorn
success: fontawesome/solid/check
question: fontawesome/solid/circle-question
warning: fontawesome/solid/triangle-exclamation
failure: fontawesome/solid/bomb
danger: fontawesome/solid/skull
bug: fontawesome/solid/robot
example: fontawesome/solid/flask
quote: fontawesome/solid/quote-left
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# 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 system preference
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/extra.js
extra:
analytics:
provider: google
property: G-97Q04B6XCX
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
cookies:
analytics: GA_ossum_tech
github: GH_ossum_tech
consent:
actions:
- accept
- reject
- manage
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/ossum-inc/
- icon: fontawesome/brands/github
link: https://www.github.com/ossuminc
generator: false
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
base_path: docs
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
- offline
nav:
- Home: index.md
- RIDDL:
- riddl/index.md
- Quickstart: riddl/quickstart.md
- Tutorials:
- riddl/tutorials/index.md
- Getting Started: riddl/tutorials/basics.md
- Reactive BBQ Case Study:
- riddl/tutorials/rbbq/index.md
- Scenario: riddl/tutorials/rbbq/scenario.md
- Domain Model: riddl/tutorials/rbbq/reactive-bbq.md
- Restaurant:
- riddl/tutorials/rbbq/restaurant/index.md
- Front of House: riddl/tutorials/rbbq/restaurant/front-of-house.md
- Kitchen: riddl/tutorials/rbbq/restaurant/kitchen.md
- Bar: riddl/tutorials/rbbq/restaurant/bar.md
- Online Ordering: riddl/tutorials/rbbq/restaurant/online-ordering.md
- Delivery: riddl/tutorials/rbbq/restaurant/delivery.md
- Loyalty: riddl/tutorials/rbbq/restaurant/loyalty.md
- BackOffice:
- riddl/tutorials/rbbq/backoffice/index.md
- Scheduling: riddl/tutorials/rbbq/backoffice/scheduling.md
- Inventory: riddl/tutorials/rbbq/backoffice/inventory.md
- Reporting: riddl/tutorials/rbbq/backoffice/reporting.md
- Corporate:
- riddl/tutorials/rbbq/corporate/index.md
- Menu Management: riddl/tutorials/rbbq/corporate/menu-management.md
- Supply Chain: riddl/tutorials/rbbq/corporate/supply-chain.md
- Marketing: riddl/tutorials/rbbq/corporate/marketing.md
- External Systems: riddl/tutorials/rbbq/external-contexts.md
- Patterns: riddl/tutorials/rbbq/patterns.md
- Personas:
- riddl/tutorials/rbbq/personas/index.md
- CEO: riddl/tutorials/rbbq/personas/ceo.md
- Head Chef: riddl/tutorials/rbbq/personas/head-chef.md
- Host: riddl/tutorials/rbbq/personas/host.md
- Server: riddl/tutorials/rbbq/personas/server.md
- Bartender: riddl/tutorials/rbbq/personas/bartender.md
- Chef: riddl/tutorials/rbbq/personas/chef.md
- Cook: riddl/tutorials/rbbq/personas/cook.md
- Delivery Driver: riddl/tutorials/rbbq/personas/delivery-driver.md
- Online Customer: riddl/tutorials/rbbq/personas/online-customer.md
- Introduction:
- riddl/introduction/index.md
- What is RIDDL?: riddl/introduction/what-is-riddl.md
- Why is RIDDL Needed?: riddl/introduction/why-is-riddl-needed.md
- What Can RIDDL Do?: riddl/introduction/what-can-riddl-do.md
- What is RIDDL Based On?: riddl/introduction/what-is-riddl-based-on.md
- What Conventions Does RIDDL Use?: riddl/introduction/what-conventions-does-riddl-use.md
- Who Can Benefit from RIDDL?: riddl/introduction/who-can-benefit-from-riddl.md
- Who Made RIDDL Possible?: riddl/introduction/who-made-riddl-possible.md
- How Can I Get Help?: riddl/introduction/how-can-i-get-help.md
- Concepts:
- riddl/concepts/index.md
- Root: riddl/concepts/root.md
- Domain: riddl/concepts/domain.md
- Context: riddl/concepts/context.md
- Entity: riddl/concepts/entity.md
- Repository: riddl/concepts/repository.md
- Projector: riddl/concepts/projector.md
- Saga: riddl/concepts/saga.md
- Saga Step: riddl/concepts/sagastep.md
- Streamlet: riddl/concepts/streamlet.md
- Adaptor: riddl/concepts/adaptor.md
- Application: riddl/concepts/application.md
- Epic: riddl/concepts/epic.md
- Use Case: riddl/concepts/use-case.md
- User: riddl/concepts/user.md
- Interaction: riddl/concepts/interaction.md
- Handler: riddl/concepts/handler.md
- On Clause: riddl/concepts/onclause.md
- Function: riddl/concepts/function.md
- Type: riddl/concepts/type.md
- Field: riddl/concepts/field.md
- State: riddl/concepts/state.md
- Constant: riddl/concepts/constant.md
- Invariant: riddl/concepts/invariant.md
- Message: riddl/concepts/message.md
- Inlet: riddl/concepts/inlet.md
- Outlet: riddl/concepts/outlet.md
- Connector: riddl/concepts/connector.md
- Group: riddl/concepts/group.md
- Input: riddl/concepts/input.md
- Output: riddl/concepts/output.md
- Case: riddl/concepts/case.md
- Conditional: riddl/concepts/conditional.md
- Statement: riddl/concepts/statement.md
- Include: riddl/concepts/include.md
- Author: riddl/concepts/author.md
- Term: riddl/concepts/term.md
- Comment: riddl/concepts/comment.md
- Description: riddl/concepts/description.md
- Metadata: riddl/concepts/metadata.md
- Option: riddl/concepts/option.md
- Element: riddl/concepts/element.md
- Definition: riddl/concepts/definition.md
- Value: riddl/concepts/value.md
- Vital: riddl/concepts/vital.md
- Processor: riddl/concepts/processor.md
- Guides:
- riddl/guides/index.md
- For Authors:
- riddl/guides/authors/index.md
- Design Guide:
- riddl/guides/authors/design/index.md
- Bounded Contexts: riddl/guides/authors/design/contexts.md
- Command-Event Patterns: riddl/guides/authors/design/command-event-patterns.md
- UI Modeling: riddl/guides/authors/design/ui-modeling.md
- For Domain Experts:
- riddl/guides/domain-experts/index.md
- Duties: riddl/guides/domain-experts/duties.md
- Relating to RIDDL: riddl/guides/domain-experts/relating-to-riddl.md
- For Implementors:
- riddl/guides/implementors/index.md
- Ways to Use RIDDL: riddl/guides/implementors/ways-to-use-riddl.md
- For Developers:
- riddl/guides/developers/index.md
- Design Principles: riddl/guides/developers/principles.md
- Releasing: riddl/guides/developers/releasing.md
- Examples: riddl/examples/index.md
- Playground: riddl/playground/index.md
- References:
- riddl/references/index.md
- Cheat Sheet: riddl/references/cheat-sheet.md
- Standard Highlighting: riddl/references/standard-highlighting.md
- Language Reference: riddl/references/language-reference.md
- EBNF Grammar: riddl/references/ebnf-grammar.md
- Tools:
- riddl/tools/index.md
- riddlc:
- riddl/tools/riddlc/index.md
- Installation: riddl/tools/riddlc/installation.md
- Command Reference: riddl/tools/riddlc/command-reference.md
- Configuration: riddl/tools/riddlc/configuration.md
- Compilation: riddl/tools/riddlc/compilation.md
- GitHub Actions: riddl/tools/riddlc/github-actions.md
- sbt-riddl: riddl/tools/sbt-riddl/index.md
- MCP Server: riddl/tools/riddl-mcp-server/index.md
- IntelliJ Plugin: riddl/tools/riddl-idea-plugin/index.md
- Synapify:
- synapify/index.md
- User Interface: synapify/user-interface.md
- Generation: synapify/generation.md
- Simulation: synapify/simulation.md
- MCP:
- MCP/index.md
- Claude Desktop: MCP/claude-desktop.md
- Claude Code: MCP/claude-code.md
- GitHub Copilot CLI: MCP/github-copilot.md
- VS Code Copilot: MCP/vscode-copilot.md
- Gemini: MCP/gemini.md
- IntelliJ AI Assistant: MCP/intellij-ai.md
- IntelliJ Junie: MCP/intellij-junie.md
- IDE Support:
- OSS/index.md
- IntelliJ IDEA Plugin: OSS/intellij-plugin/index.md
- VS Code Extension: OSS/vscode-extension/index.md
- Authoring RIDDL: OSS/authoring-riddl.md
- Coming Soon: coming-soon/index.md
- About:
- about/index.md
- Privacy Policy: about/privacy-policy.md