-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventcatalog.config.js
44 lines (42 loc) · 1.41 KB
/
eventcatalog.config.js
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
import { version } from 'os';
import path from 'path';
import url from 'url';
const __dirname = path.dirname(url.fileURLToPath(import.meta.url));
/** @type {import('@eventcatalog/core/bin/eventcatalog.config').Config} */
export default {
title: 'OurLogix',
tagline: 'A comprehensive logistics and shipping management company',
organizationName: 'OurLogix',
homepageLink: 'https://eventcatalog.dev/',
landingPage: '',
editUrl: 'https://github.com/boyney123/eventcatalog-demo/edit/master',
// By default set to false, add true to get urls ending in /
trailingSlash: false,
// Change to make the base url of the site different, by default https://{website}.com/docs,
// changing to /company would be https://{website}.com/company/docs,
base: '/',
// Customize the logo, add your logo to public/ folder
logo: {
alt: 'EventCatalog Logo',
src: '/logo.png',
text: 'OurLogix',
},
docs: {
sidebar: {
// Should the sub heading be rendered in the docs sidebar?
showPageHeadings: true,
},
},
generators: [
[
'@ismaelmartinez/generator-atlassian-compass',
{
services: [
{ path: path.join(__dirname, 'src', 'test', 'my-service-compass.yml'), version: '0.0.1' },
{ path: path.join(__dirname, 'src', 'test', 'my-other-compass.notsupported.yml') },
],
domain: { id: 'orders', name: 'Compass', version: '0.0.1' },
},
],
],
};