@eventcatalog/create-eventcatalog 4.2.8 → 4.3.2

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 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.2.8",
29811
+ version: "4.3.2",
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: "EventCatalog Ltd"
30214
+ initial: "Acme Inc"
30215
30215
  });
30216
30216
  if (typeof res.organizationName === "string") {
30217
30217
  organizationName = res.organizationName.trim();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/create-eventcatalog",
3
3
  "description": "Create EventCatalog with one command",
4
- "version": "4.2.8",
4
+ "version": "4.3.2",
5
5
  "license": "MIT",
6
6
  "bin": {
7
7
  "create-catalog": "./dist/index.js"
@@ -4,6 +4,7 @@ export default {
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 EventBridge schemas, services and domains, and understand the message contracts that connect our infrastructure',
6
6
  organizationName: '<organizationName>',
7
+ theme: 'sunset',
7
8
  homepageLink: 'https://eventcatalog.dev/',
8
9
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
9
10
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -14,6 +15,11 @@ export default {
14
15
  // Change to make the base url of the site different, by default https://{website}.com/docs,
15
16
  // changing to /company would be https://{website}.com/company/docs,
16
17
  base: '/',
18
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
19
+ // to enable full-content search. Indexed search requires running a build to generate the index.
20
+ search: {
21
+ type: 'resource',
22
+ },
17
23
  // Customize the logo, add your logo to public/ folder
18
24
  logo: {
19
25
  alt: 'EventCatalog Logo',
@@ -9,6 +9,7 @@ export default {
9
9
  tagline:
10
10
  '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',
11
11
  organizationName: '<organizationName>',
12
+ theme: 'sunset',
12
13
  homepageLink: 'https://eventcatalog.dev/',
13
14
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
14
15
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -19,6 +20,11 @@ export default {
19
20
  // Change to make the base url of the site different, by default https://{website}.com/docs,
20
21
  // changing to /company would be https://{website}.com/company/docs,
21
22
  base: '/',
23
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
24
+ // to enable full-content search. Indexed search requires running a build to generate the index.
25
+ search: {
26
+ type: 'resource',
27
+ },
22
28
  // Customize the navigation for your docs sidebar.
23
29
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
24
30
  navigation: {
@@ -4,6 +4,7 @@ export default {
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 kafka schemas, topics, services and domains, and understand the message contracts that connect our infrastructure',
6
6
  organizationName: '<organizationName>',
7
+ theme: 'sunset',
7
8
  homepageLink: 'https://eventcatalog.dev/',
8
9
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
9
10
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -14,6 +15,11 @@ export default {
14
15
  // Change to make the base url of the site different, by default https://{website}.com/docs,
15
16
  // changing to /company would be https://{website}.com/company/docs,
16
17
  base: '/',
18
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
19
+ // to enable full-content search. Indexed search requires running a build to generate the index.
20
+ search: {
21
+ type: 'resource',
22
+ },
17
23
  // Customize the navigation for your docs sidebar.
18
24
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
19
25
  navigation: {
@@ -1,9 +1,10 @@
1
1
  /** @type {import('@eventcatalog/core/bin/eventcatalog.config').Config} */
2
2
  export default {
3
- title: 'EventCatalog',
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>',
7
+ theme: 'sunset',
7
8
  homepageLink: 'https://eventcatalog.dev/',
8
9
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
9
10
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -14,6 +15,11 @@ export default {
14
15
  // Change to make the base url of the site different, by default https://{website}.com/docs,
15
16
  // changing to /company would be https://{website}.com/company/docs,
16
17
  base: '/',
18
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
19
+ // to enable full-content search. Indexed search requires running a build to generate the index.
20
+ search: {
21
+ type: 'resource',
22
+ },
17
23
  // Customize the navigation for your docs sidebar.
18
24
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
19
25
  navigation: {
@@ -21,9 +27,9 @@ export default {
21
27
  },
22
28
  // Customize the logo, add your logo to public/ folder
23
29
  logo: {
24
- alt: 'EventCatalog Logo',
30
+ alt: '<organizationName> Logo',
25
31
  src: '/logo.png',
26
- text: 'EventCatalog',
32
+ text: '<organizationName>',
27
33
  },
28
34
  // This lets you copy markdown contents from EventCatalog to your clipboard
29
35
  // 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 the mobile applications for our company. 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.
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 our company’s 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.
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.
@@ -4,6 +4,7 @@ export default {
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>',
7
+ theme: 'sunset',
7
8
  homepageLink: 'https://eventcatalog.dev/',
8
9
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
9
10
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -14,6 +15,11 @@ export default {
14
15
  // Change to make the base url of the site different, by default https://{website}.com/docs,
15
16
  // changing to /company would be https://{website}.com/company/docs,
16
17
  base: '/',
18
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
19
+ // to enable full-content search. Indexed search requires running a build to generate the index.
20
+ search: {
21
+ type: 'resource',
22
+ },
17
23
  // Customize the navigation for your docs sidebar.
18
24
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
19
25
  navigation: {
@@ -4,6 +4,7 @@ export default {
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 EventBridge schemas, services and domains, and understand the message contracts that connect our infrastructure',
6
6
  organizationName: '<organizationName>',
7
+ theme: 'sunset',
7
8
  homepageLink: 'https://eventcatalog.dev/',
8
9
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
9
10
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -14,6 +15,11 @@ export default {
14
15
  // Change to make the base url of the site different, by default https://{website}.com/docs,
15
16
  // changing to /company would be https://{website}.com/company/docs,
16
17
  base: '/',
18
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
19
+ // to enable full-content search. Indexed search requires running a build to generate the index.
20
+ search: {
21
+ type: 'resource',
22
+ },
17
23
  // Customize the navigation for your docs sidebar.
18
24
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
19
25
  navigation: {
@@ -9,6 +9,7 @@ export default {
9
9
  tagline:
10
10
  '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',
11
11
  organizationName: '<organizationName>',
12
+ theme: 'sunset',
12
13
  homepageLink: 'https://eventcatalog.dev/',
13
14
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
14
15
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -19,6 +20,11 @@ export default {
19
20
  // Change to make the base url of the site different, by default https://{website}.com/docs,
20
21
  // changing to /company would be https://{website}.com/company/docs,
21
22
  base: '/',
23
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
24
+ // to enable full-content search. Indexed search requires running a build to generate the index.
25
+ search: {
26
+ type: 'resource',
27
+ },
22
28
  // Customize the navigation for your docs sidebar.
23
29
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
24
30
  navigation: {
@@ -9,6 +9,7 @@ export default {
9
9
  tagline:
10
10
  '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',
11
11
  organizationName: '<organizationName>',
12
+ theme: 'sunset',
12
13
  homepageLink: 'https://eventcatalog.dev/',
13
14
  editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
14
15
  // Supports static or server. Static renders a static site, server renders a server side rendered site
@@ -19,6 +20,11 @@ export default {
19
20
  // Change to make the base url of the site different, by default https://{website}.com/docs,
20
21
  // changing to /company would be https://{website}.com/company/docs,
21
22
  base: '/',
23
+ // Resource search is the default lightweight search. Change this to { type: 'indexed' }
24
+ // to enable full-content search. Indexed search requires running a build to generate the index.
25
+ search: {
26
+ type: 'resource',
27
+ },
22
28
  // Customize the navigation for your docs sidebar.
23
29
  // read more at https://eventcatalog.dev/docs/development/customization/customize-sidebars/documentation-sidebar
24
30
  navigation: {