Files
backstage/plugins/explore
Oliver Sand d8bce7cdc7 Merge pull request #4571 from SDA-SE/feat/domain-owner
Display the owner of the domain on the domain card
2021-02-19 11:07:09 +01:00
..
2021-02-03 09:37:55 +01:00
2021-02-18 13:23:19 +00:00
2021-02-18 13:23:19 +00:00
2021-02-03 09:37:55 +01:00

explore

Welcome to the explore plugin! This plugin helps to visualize the domains and tools in your ecosystem.

Getting started

To install the plugin, include the following import your plugins.ts:

export { explorePlugin } from '@backstage/plugin-explore';

Register the route in App.tsx:

import { ExplorePage } from '@backstage/plugin-explore';

...

<Route path="/explore" element={<ExplorePage />} />

Add a link to the sidebar in Root.tsx:

import LayersIcon from '@material-ui/icons/Layers';

...

<SidebarItem icon={LayersIcon} to="explore" text="Explore" />