@eventcatalog/create-eventcatalog 4.2.7 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/templates/amazon-api-gateway/eventcatalog.config.js +5 -0
- package/templates/asyncapi/eventcatalog.config.js +5 -0
- package/templates/confluent/eventcatalog.config.js +5 -0
- package/templates/default/domains/E-Commerce/index.mdx +1 -7
- package/templates/default/eventcatalog.config.js +8 -3
- package/templates/default/public/logo.png +0 -0
- package/templates/default/teams/mobile-devs.mdx +1 -1
- package/templates/default/users/mSmith.mdx +1 -1
- package/templates/empty/eventcatalog.config.js +5 -0
- package/templates/eventbridge/eventcatalog.config.js +5 -0
- package/templates/graphql/eventcatalog.config.js +5 -0
- package/templates/openapi/eventcatalog.config.js +5 -0
package/dist/index.js
CHANGED
|
@@ -29808,7 +29808,7 @@ var import_os2 = __toESM(require("os"));
|
|
|
29808
29808
|
var package_default = {
|
|
29809
29809
|
name: "@eventcatalog/create-eventcatalog",
|
|
29810
29810
|
description: "Create EventCatalog with one command",
|
|
29811
|
-
version: "4.
|
|
29811
|
+
version: "4.3.1",
|
|
29812
29812
|
license: "MIT",
|
|
29813
29813
|
bin: {
|
|
29814
29814
|
"create-catalog": "./dist/index.js"
|
|
@@ -30211,7 +30211,7 @@ Run ${import_chalk4.default.cyan(`${program.name()} --help`)} to see all options
|
|
|
30211
30211
|
type: "text",
|
|
30212
30212
|
name: "organizationName",
|
|
30213
30213
|
message: "What is your organization name?",
|
|
30214
|
-
initial: "
|
|
30214
|
+
initial: "Acme Inc"
|
|
30215
30215
|
});
|
|
30216
30216
|
if (typeof res.organizationName === "string") {
|
|
30217
30217
|
organizationName = res.organizationName.trim();
|
package/package.json
CHANGED
|
@@ -14,6 +14,11 @@ export default {
|
|
|
14
14
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
15
15
|
// changing to /company would be https://{website}.com/company/docs,
|
|
16
16
|
base: '/',
|
|
17
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
18
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
19
|
+
search: {
|
|
20
|
+
type: 'resource',
|
|
21
|
+
},
|
|
17
22
|
// Customize the logo, add your logo to public/ folder
|
|
18
23
|
logo: {
|
|
19
24
|
alt: 'EventCatalog Logo',
|
|
@@ -19,6 +19,11 @@ export default {
|
|
|
19
19
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
20
20
|
// changing to /company would be https://{website}.com/company/docs,
|
|
21
21
|
base: '/',
|
|
22
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
23
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
24
|
+
search: {
|
|
25
|
+
type: 'resource',
|
|
26
|
+
},
|
|
22
27
|
// Customize the navigation for your docs sidebar.
|
|
23
28
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
24
29
|
navigation: {
|
|
@@ -14,6 +14,11 @@ export default {
|
|
|
14
14
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
15
15
|
// changing to /company would be https://{website}.com/company/docs,
|
|
16
16
|
base: '/',
|
|
17
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
18
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
19
|
+
search: {
|
|
20
|
+
type: 'resource',
|
|
21
|
+
},
|
|
17
22
|
// Customize the navigation for your docs sidebar.
|
|
18
23
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
19
24
|
navigation: {
|
|
@@ -68,13 +68,7 @@ The E-Commerce domain is built on the following sub domains:
|
|
|
68
68
|
</ResourceLink>
|
|
69
69
|
- Generic subscription domain handling users subscriptions
|
|
70
70
|
|
|
71
|
-
##
|
|
72
|
-
|
|
73
|
-
Our target architecture was defined through collaborative event storming sessions with product, engineering, and business stakeholders. This represents our vision for FlowMart's commerce capabilities.
|
|
74
|
-
|
|
75
|
-
<Miro boardId="uXjVIHCImos=/" moveToWidget="3074457347671667709" edit={false} />
|
|
76
|
-
|
|
77
|
-
## Current Production Architecture
|
|
71
|
+
## Architecture
|
|
78
72
|
|
|
79
73
|
Our current event-driven architecture powering FlowMart's shopping experience:
|
|
80
74
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @type {import('@eventcatalog/core/bin/eventcatalog.config').Config} */
|
|
2
2
|
export default {
|
|
3
|
-
title: '
|
|
3
|
+
title: '<organizationName>',
|
|
4
4
|
tagline:
|
|
5
5
|
'This internal platform provides a comprehensive view of our event-driven architecture across all systems. Use this portal to discover existing domains, explore services and their dependencies, and understand the message contracts that connect our infrastructure',
|
|
6
6
|
organizationName: '<organizationName>',
|
|
@@ -14,6 +14,11 @@ export default {
|
|
|
14
14
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
15
15
|
// changing to /company would be https://{website}.com/company/docs,
|
|
16
16
|
base: '/',
|
|
17
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
18
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
19
|
+
search: {
|
|
20
|
+
type: 'resource',
|
|
21
|
+
},
|
|
17
22
|
// Customize the navigation for your docs sidebar.
|
|
18
23
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
19
24
|
navigation: {
|
|
@@ -21,9 +26,9 @@ export default {
|
|
|
21
26
|
},
|
|
22
27
|
// Customize the logo, add your logo to public/ folder
|
|
23
28
|
logo: {
|
|
24
|
-
alt: '
|
|
29
|
+
alt: '<organizationName> Logo',
|
|
25
30
|
src: '/logo.png',
|
|
26
|
-
text: '
|
|
31
|
+
text: '<organizationName>',
|
|
27
32
|
},
|
|
28
33
|
// This lets you copy markdown contents from EventCatalog to your clipboard
|
|
29
34
|
// Including schemas for your events and services
|
|
Binary file
|
|
@@ -6,7 +6,7 @@ members:
|
|
|
6
6
|
- dboyne
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
The Mobile Devs team is responsible for the development and maintenance of
|
|
9
|
+
The Mobile Devs team is responsible for the development and maintenance of Acme Inc mobile applications. This includes the iOS and Android apps that customers use to interact with our services, make purchases, and manage their accounts. The team ensures that the mobile apps are user-friendly, secure, and performant.
|
|
10
10
|
|
|
11
11
|
## Responsibilities
|
|
12
12
|
|
|
@@ -6,4 +6,4 @@ avatarUrl: 'https://randomuser.me/api/portraits/men/51.jpg'
|
|
|
6
6
|
role: Senior software engineer
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
As a Senior Mobile Developer on The Mobile Devs team, I play a key role in designing, developing, and maintaining
|
|
9
|
+
As a Senior Mobile Developer on The Mobile Devs team, I play a key role in designing, developing, and maintaining Acme Incs mobile applications. My focus is on creating a seamless and intuitive user experience for our customers on both iOS and Android platforms. I work closely with cross-functional teams, including backend developers, UX/UI designers, and product managers, to deliver high-quality mobile solutions that meet business objectives and exceed user expectations.
|
|
@@ -14,6 +14,11 @@ export default {
|
|
|
14
14
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
15
15
|
// changing to /company would be https://{website}.com/company/docs,
|
|
16
16
|
base: '/',
|
|
17
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
18
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
19
|
+
search: {
|
|
20
|
+
type: 'resource',
|
|
21
|
+
},
|
|
17
22
|
// Customize the navigation for your docs sidebar.
|
|
18
23
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
19
24
|
navigation: {
|
|
@@ -14,6 +14,11 @@ export default {
|
|
|
14
14
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
15
15
|
// changing to /company would be https://{website}.com/company/docs,
|
|
16
16
|
base: '/',
|
|
17
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
18
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
19
|
+
search: {
|
|
20
|
+
type: 'resource',
|
|
21
|
+
},
|
|
17
22
|
// Customize the navigation for your docs sidebar.
|
|
18
23
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
19
24
|
navigation: {
|
|
@@ -19,6 +19,11 @@ export default {
|
|
|
19
19
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
20
20
|
// changing to /company would be https://{website}.com/company/docs,
|
|
21
21
|
base: '/',
|
|
22
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
23
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
24
|
+
search: {
|
|
25
|
+
type: 'resource',
|
|
26
|
+
},
|
|
22
27
|
// Customize the navigation for your docs sidebar.
|
|
23
28
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
24
29
|
navigation: {
|
|
@@ -19,6 +19,11 @@ export default {
|
|
|
19
19
|
// Change to make the base url of the site different, by default https://{website}.com/docs,
|
|
20
20
|
// changing to /company would be https://{website}.com/company/docs,
|
|
21
21
|
base: '/',
|
|
22
|
+
// Resource search is the default lightweight search. Change this to { type: 'indexed' }
|
|
23
|
+
// to enable full-content search. Indexed search requires running a build to generate the index.
|
|
24
|
+
search: {
|
|
25
|
+
type: 'resource',
|
|
26
|
+
},
|
|
22
27
|
// Customize the navigation for your docs sidebar.
|
|
23
28
|
// read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
|
|
24
29
|
navigation: {
|