-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
108 lines (101 loc) · 3.59 KB
/
mkdocs.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
site_name: PagerDuty plugin for Backstage
site_url: https://pagerduty.github.io/backstage-plugin-docs/
theme:
name: material
custom_dir: overrides
logo: 'assets/pd-logo.png'
favicon: 'assets/favicon.png'
font:
text: 'Open Sans'
features:
- content.code.copy
- content.code.annotate
- header.autohide
- announce.dismiss
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
toggle:
icon: material/toggle-switch
name: Swith to dark mode
primary: custom
accent: custom
- media: '(prefers-color-scheme: dark)'
scheme: slate
toggle:
icon: material/toggle-switch-off-outline
name: Swith to light mode
primary: custom
accent: custom
extra_css:
- stylesheets/extra.css
extra:
analytics:
provider: google
property: G-TQ2EQJ9EFN
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: Thanks for your feedback!
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
social:
- icon: fontawesome/solid/globe
link: https://backstage.spotify.com/marketplace/pagerduty/plugin/pagerduty
- icon: fontawesome/brands/discord
link: https://discord.com/servers/backstage-687207715902193673
- icon: fontawesome/brands/github
link: https://github.com/PagerDuty/backstage-plugin-docs
nav:
- Overview: index.md
- Getting started:
- PagerDuty integration: getting-started/pagerduty.md
- Configuring Backstage: getting-started/backstage.md
- Capabilities: capabilities.md
- Advanced:
- Configure REST API url: advanced/configure-api-url.md
- Configure Events url: advanced/configure-events-url.md
- Configure service dependency sync: advanced/configure-service-dependency-sync.md
- Create an homepage component: advanced/homepage-component.md
- Create PagerDuty service with Software Templates: advanced/create-service-software-template.md
- Enable read-only mode: advanced/enable-read-only-mode.md
- Hide change events: advanced/hide-change-events.md
- Hide on-call: advanced/hide-oncall.md
- Mapping PagerDuty Services to Backstage Entities: advanced/service-entity-mapping.md
- UI Components:
- PagerDutyCard: components/pagerduty-card.md
- PagerDutySmallCard: components/pagerduty-small-card.md
- PagerDutyPage: components/pagerduty-page.md
- Migration:
- From Backstage-owned plugin: migration/from-backstage-owned.md
- To Backstage's new backend system: migration/backend-system-migration.md
- Community: community.md
- Release Notes:
- Frontend plugin: release-notes/frontend.md
- Backend plugin: release-notes/backend.md
- Common library: release-notes/common.md
- Scaffolder Actions module: release-notes/scaffolder-actions.md
- Entity Processor module: release-notes/entity-processor.md
markdown_extensions:
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences