open-dora-backstage-plugin 0.1.2-PullRequest0132.19
Install from the command line:
Learn more about npm packages
$ npm install @devoteamnl/open-dora-backstage-plugin@0.1.2-PullRequest0132.19
Install via package.json:
"@devoteamnl/open-dora-backstage-plugin": "0.1.2-PullRequest0132.19"
About this version
Welcome to the OpenDORA plugin!
This plugin allows you to see DORA metrics for the teams within Backstage.
- Install this plugin:
# From your Backstage root directory
yarn --cwd packages/app add @devoteam-nl/open-dora-backstage-plugin
-
Make sure the OpenDORA backend is deployed.
-
Configure the url from which the OpenDORA API is accessible.
# app-config.yaml
open-dora:
apiBaseUrl: http://localhost:10666
- Add a route to the plugin page:
// In packages/app/src/App.tsx
import { OpenDoraPluginPage } from '@devoteam-nl/open-dora-backstage-plugin';
...
const routes = (
<FlatRoutes>
{/* other routes... */}
<Route path="/open-dora" element={<OpenDoraPluginPage />} />
</FlatRoutes>
);
- Add the plugin as a tab to your side-navigation:
// In packages/app/src/components/Root/Root.tsx
export const Root = ({ children }: PropsWithChildren<{}>) => (
<SidebarPage>
<Sidebar>
{/* other sidebar groups... */}
<SidebarGroup label="Menu" icon={<MenuIcon />}>
{/* other sidebar items... */}
<SidebarItem icon={ExtensionIcon} to="open-dora" text="OpenDORA" />
</SidebarGroup>
{/* other sidebar groups... */}
</Sidebar>
{children}
</SidebarPage>
);
Details
- open-dora-backstage-plugin
- DevoteamNL
- 11 months ago
- GPL-3.0
- 24 dependencies
Assets
- open-dora-backstage-plugin-0.1.2-PullRequest0132.19.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0