|
| 1 | +/** @type {import('@eventcatalog/core/bin/eventcatalog.config').Config} */ |
1 | 2 | export default { |
2 | | - title: 'EventCatalog', |
3 | | - tagline: 'Discover, Explore and Document your Event Driven Architectures', |
4 | | - organizationName: 'Your Company', |
5 | | - projectName: 'Event Catalog', |
6 | | - editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master', |
7 | | - trailingSlash: true, |
8 | | - primaryCTA: { |
9 | | - label: 'Explore Events', |
10 | | - href: '/events' |
11 | | - }, |
12 | | - secondaryCTA: { |
13 | | - label: 'Getting Started', |
14 | | - href:"https://www.eventcatalog.dev/" |
15 | | - }, |
| 3 | + title: 'ecommerce EventCatalog', |
| 4 | + tagline: 'A non-trivial application with DDD, CQRS and Event Sourcing built on Rails and RailsEventStore.', |
| 5 | + organizationName: 'RailsEventStore ecommerce', |
| 6 | + homepageLink: 'https://github.com/RailsEventStore/ecommerce', |
| 7 | + // By default set to false, add true to get urls ending in / |
| 8 | + trailingSlash: false, |
| 9 | + // Change to make the base url of the site different, by default https://{website}.com/docs, |
| 10 | + // changing to /company would be https://{website}.com/company/docs, |
| 11 | + base: '/', |
| 12 | + // Customize the logo, add your logo to public/ folder |
16 | 13 | logo: { |
17 | 14 | alt: 'EventCatalog Logo', |
18 | | - // found in the public dir |
19 | | - src: 'logo.svg', |
| 15 | + src: '/logo.png', |
| 16 | + text: 'EventCatalog' |
20 | 17 | }, |
21 | | - footerLinks: [ |
22 | | - { label: 'Events', href: '/events' }, |
23 | | - { label: 'Services', href: '/services' }, |
24 | | - { label: 'Visualiser', href: '/visualiser' }, |
25 | | - { label: '3D Node Graph', href: '/overview' }, |
26 | | - { label: 'GitHub', href: 'https://github.com/boyney123/eventcatalog-demo/edit/master' } |
27 | | - ], |
28 | | - users: [ |
29 | | - { |
30 | | - id: 'dboyne', |
31 | | - name: 'David Boyne', |
32 | | - avatarUrl: 'https://pbs.twimg.com/profile_images/1262283153563140096/DYRDqKg6_400x400.png', |
33 | | - role: 'Developer', |
34 | | - }, |
35 | | - { |
36 | | - id: 'mSmith', |
37 | | - name: 'Matthew Smith', |
38 | | - avatarUrl: 'https://randomuser.me/api/portraits/lego/3.jpg', |
39 | | - role: 'Developer', |
| 18 | + docs: { |
| 19 | + sidebar: { |
| 20 | + // TREE_VIEW will render the DOCS as a tree view and map your file system folder structure |
| 21 | + // LIST_VIEW will render the DOCS that look familiar to API documentation websites |
| 22 | + type: 'LIST_VIEW' |
40 | 23 | }, |
41 | | - { |
42 | | - id: 'Arkency', |
43 | | - name: 'Arkency', |
44 | | - avatarUrl: 'https://arkency.com/logo.svg', |
45 | | - role: 'Developer', |
46 | | - }, |
47 | | - ], |
| 24 | + }, |
| 25 | + // Enable RSS feed for your eventcatalog |
| 26 | + rss: { |
| 27 | + enabled: true, |
| 28 | + // number of items to include in the feed per resource (event, service, etc) |
| 29 | + limit: 20 |
| 30 | + }, |
| 31 | + // required random generated id used by eventcatalog |
| 32 | + cId: '5aee09af-a4aa-4499-99d0-8af65544da4f' |
48 | 33 | } |
0 commit comments