├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── dependabot.yml └── workflows │ └── links-watcher-cron.yml ├── .lycheeignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTING_USING_GENAI.md ├── LICENSE ├── LICENSES └── Apache-2.0.txt ├── README.md ├── REUSE.toml ├── blog ├── 0001-ddd-introduction.md ├── 0002-core-concepts.md ├── 0003-how-to-model-aggregates.md ├── 0004-how-to-develop-aggregates.md ├── 0005-how-to-get-from-event-storming-to-user-stories.md └── images │ ├── .gitkeep │ └── part_of_BC.png ├── ddd-kata.md ├── detailedinfo ├── domainmessageflow.md ├── eventstorming.md └── images │ ├── .gitkeep │ ├── Restaurant DDD Kata Example Grammar.png │ ├── Restaurant DDD Kata Example_Chaotic_Exploration.png │ ├── Restaurant DDD Kata Example_DMF.png │ ├── Restaurant DDD Kata Example_Detailed_Design_I.png │ ├── Restaurant DDD Kata Example_Detailed_Design_II.png.png │ ├── Restaurant DDD Kata Example_Detailed_Design_III.png.png │ ├── Restaurant DDD Kata Example_Detailed_Design_IV.png │ ├── Restaurant DDD Kata Example_Enforce_Consistency.png │ ├── Restaurant DDD Kata Example_Enforce_Timeline.png │ └── Restaurant DDD Kata Example_Identify_Bounded_Contexts.png ├── images ├── ddd-starter-modelling-process-colored.png ├── ddd-starter-selected-tools.png ├── team-setup.png └── timeline-proposal.png └── knowledgebase ├── concepts ├── additional-concepts │ ├── antipatterns.md │ └── collaborativemodelling.md ├── architectual-concepts │ ├── architecture-modernization.md │ ├── cqrs.md │ ├── eda.md │ ├── event-sourcing.md │ ├── modular-monolith.md │ └── msa.md ├── best-practises │ ├── aligmentbusiness.md │ ├── bcsmallfocused.md │ ├── crossfunctionalteams.md │ ├── ddd-modelling-process.md │ ├── encapsulation.md │ ├── evolution.md │ ├── images │ │ └── ddd-starter-modeling-circular.svg │ ├── interfaces.md │ ├── responsibilities.md │ ├── robustdocument.md │ └── stranglerfigpattern.md ├── strategic-concepts │ ├── boundedcontext.md │ ├── domain.md │ └── ubiquitouslanguage.md └── tactical-concepts │ ├── aggregate.md │ ├── application-services.md │ ├── domain-events.md │ ├── domain-services.md │ ├── entities.md │ ├── factories.md │ ├── images │ ├── Aggregate Testing.png │ ├── Aggregates Roots.png │ ├── Aggregates and Boundaries.png │ ├── Aggregates.png │ ├── Best Practises.png │ ├── Domain Invariants.png │ └── Implementation.png │ ├── modules.md │ ├── repositories.md │ └── value-objects.md ├── index.md └── tools ├── bigpictureeventstorming.md ├── contextmapping.md ├── domain-message-flow.md ├── eventmodelling.md ├── eventstorming.md └── images ├── BigPicture EventStorming Example.png ├── BigPictureEventStorming Grammar.png ├── EventStorming Example Grammar.png ├── Restaurant DDD Kata Example Grammar.png ├── Restaurant DDD Kata Example_Chaotic_Exploration.png ├── Restaurant DDD Kata Example_DMF.png ├── Restaurant DDD Kata Example_Detailed_Design_I.png ├── Restaurant DDD Kata Example_Detailed_Design_II.png.png ├── Restaurant DDD Kata Example_Detailed_Design_III.png.png ├── Restaurant DDD Kata Example_Detailed_Design_IV.png ├── Restaurant DDD Kata Example_Enforce_Consistency.png ├── Restaurant DDD Kata Example_Enforce_Timeline.png ├── Restaurant DDD Kata Example_Identify_Bounded_Contexts.png └── messages-and-contents.jpg /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/links-watcher-cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/.github/workflows/links-watcher-cron.yml -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_USING_GENAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/CONTRIBUTING_USING_GENAI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/REUSE.toml -------------------------------------------------------------------------------- /blog/0001-ddd-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/blog/0001-ddd-introduction.md -------------------------------------------------------------------------------- /blog/0002-core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/blog/0002-core-concepts.md -------------------------------------------------------------------------------- /blog/0003-how-to-model-aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/blog/0003-how-to-model-aggregates.md -------------------------------------------------------------------------------- /blog/0004-how-to-develop-aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/blog/0004-how-to-develop-aggregates.md -------------------------------------------------------------------------------- /blog/0005-how-to-get-from-event-storming-to-user-stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/blog/0005-how-to-get-from-event-storming-to-user-stories.md -------------------------------------------------------------------------------- /blog/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/images/part_of_BC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/blog/images/part_of_BC.png -------------------------------------------------------------------------------- /ddd-kata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/ddd-kata.md -------------------------------------------------------------------------------- /detailedinfo/domainmessageflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/domainmessageflow.md -------------------------------------------------------------------------------- /detailedinfo/eventstorming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/eventstorming.md -------------------------------------------------------------------------------- /detailedinfo/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example Grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example Grammar.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Chaotic_Exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Chaotic_Exploration.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_DMF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_DMF.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_I.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_II.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_II.png.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_III.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_III.png.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_IV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Detailed_Design_IV.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Enforce_Consistency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Enforce_Consistency.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Enforce_Timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Enforce_Timeline.png -------------------------------------------------------------------------------- /detailedinfo/images/Restaurant DDD Kata Example_Identify_Bounded_Contexts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/detailedinfo/images/Restaurant DDD Kata Example_Identify_Bounded_Contexts.png -------------------------------------------------------------------------------- /images/ddd-starter-modelling-process-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/images/ddd-starter-modelling-process-colored.png -------------------------------------------------------------------------------- /images/ddd-starter-selected-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/images/ddd-starter-selected-tools.png -------------------------------------------------------------------------------- /images/team-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/images/team-setup.png -------------------------------------------------------------------------------- /images/timeline-proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/images/timeline-proposal.png -------------------------------------------------------------------------------- /knowledgebase/concepts/additional-concepts/antipatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/additional-concepts/antipatterns.md -------------------------------------------------------------------------------- /knowledgebase/concepts/additional-concepts/collaborativemodelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/additional-concepts/collaborativemodelling.md -------------------------------------------------------------------------------- /knowledgebase/concepts/architectual-concepts/architecture-modernization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/architectual-concepts/architecture-modernization.md -------------------------------------------------------------------------------- /knowledgebase/concepts/architectual-concepts/cqrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/architectual-concepts/cqrs.md -------------------------------------------------------------------------------- /knowledgebase/concepts/architectual-concepts/eda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/architectual-concepts/eda.md -------------------------------------------------------------------------------- /knowledgebase/concepts/architectual-concepts/event-sourcing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/architectual-concepts/event-sourcing.md -------------------------------------------------------------------------------- /knowledgebase/concepts/architectual-concepts/modular-monolith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/architectual-concepts/modular-monolith.md -------------------------------------------------------------------------------- /knowledgebase/concepts/architectual-concepts/msa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/architectual-concepts/msa.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/aligmentbusiness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/aligmentbusiness.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/bcsmallfocused.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/bcsmallfocused.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/crossfunctionalteams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/crossfunctionalteams.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/ddd-modelling-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/ddd-modelling-process.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/encapsulation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/evolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/evolution.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/images/ddd-starter-modeling-circular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/images/ddd-starter-modeling-circular.svg -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/interfaces.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/responsibilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/responsibilities.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/robustdocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/robustdocument.md -------------------------------------------------------------------------------- /knowledgebase/concepts/best-practises/stranglerfigpattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/best-practises/stranglerfigpattern.md -------------------------------------------------------------------------------- /knowledgebase/concepts/strategic-concepts/boundedcontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/strategic-concepts/boundedcontext.md -------------------------------------------------------------------------------- /knowledgebase/concepts/strategic-concepts/domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/strategic-concepts/domain.md -------------------------------------------------------------------------------- /knowledgebase/concepts/strategic-concepts/ubiquitouslanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/strategic-concepts/ubiquitouslanguage.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/aggregate.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/application-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/application-services.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/domain-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/domain-events.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/domain-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/domain-services.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/entities.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/factories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/factories.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Aggregate Testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Aggregate Testing.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Aggregates Roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Aggregates Roots.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Aggregates and Boundaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Aggregates and Boundaries.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Aggregates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Aggregates.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Best Practises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Best Practises.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Domain Invariants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Domain Invariants.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/images/Implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/images/Implementation.png -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/modules.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/repositories.md -------------------------------------------------------------------------------- /knowledgebase/concepts/tactical-concepts/value-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/concepts/tactical-concepts/value-objects.md -------------------------------------------------------------------------------- /knowledgebase/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/index.md -------------------------------------------------------------------------------- /knowledgebase/tools/bigpictureeventstorming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/bigpictureeventstorming.md -------------------------------------------------------------------------------- /knowledgebase/tools/contextmapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/contextmapping.md -------------------------------------------------------------------------------- /knowledgebase/tools/domain-message-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/domain-message-flow.md -------------------------------------------------------------------------------- /knowledgebase/tools/eventmodelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/eventmodelling.md -------------------------------------------------------------------------------- /knowledgebase/tools/eventstorming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/eventstorming.md -------------------------------------------------------------------------------- /knowledgebase/tools/images/BigPicture EventStorming Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/BigPicture EventStorming Example.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/BigPictureEventStorming Grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/BigPictureEventStorming Grammar.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/EventStorming Example Grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/EventStorming Example Grammar.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example Grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example Grammar.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Chaotic_Exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Chaotic_Exploration.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_DMF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_DMF.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_I.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_II.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_II.png.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_III.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_III.png.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_IV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Detailed_Design_IV.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Enforce_Consistency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Enforce_Consistency.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Enforce_Timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Enforce_Timeline.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/Restaurant DDD Kata Example_Identify_Bounded_Contexts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/Restaurant DDD Kata Example_Identify_Bounded_Contexts.png -------------------------------------------------------------------------------- /knowledgebase/tools/images/messages-and-contents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/curated-resources-for-domain-driven-design/HEAD/knowledgebase/tools/images/messages-and-contents.jpg --------------------------------------------------------------------------------