Skip to content

Commit

Permalink
Add Tech Radar plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
timosalm committed Dec 7, 2023
1 parent 37f964f commit 421a585
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions oss-backstage/packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@backstage/plugin-scaffolder": "^1.15.1",
"@backstage/plugin-search": "^1.4.1",
"@backstage/plugin-search-react": "^1.7.1",
"@backstage/plugin-tech-radar": "^0.6.9",
"@backstage/plugin-techdocs": "^1.8.0",
"@backstage/plugin-techdocs-module-addons-contrib": "^1.1.1",
"@backstage/plugin-techdocs-react": "^1.1.12",
Expand Down
5 changes: 5 additions & 0 deletions oss-backstage/packages/app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
import { ScaffolderPage, scaffolderPlugin } from '@backstage/plugin-scaffolder';
import { orgPlugin } from '@backstage/plugin-org';
import { SearchPage } from '@backstage/plugin-search';
import { TechRadarPage } from '@backstage/plugin-tech-radar';
import {
TechDocsIndexPage,
techdocsPlugin,
Expand Down Expand Up @@ -75,6 +76,10 @@ const routes = (
</Route>
<Route path="/create" element={<ScaffolderPage />} />
<Route path="/api-docs" element={<ApiExplorerPage />} />
<Route
path="/tech-radar"
element={<TechRadarPage width={1500} height={800} />}
/>
<Route
path="/catalog-import"
element={
Expand Down
4 changes: 4 additions & 0 deletions oss-backstage/packages/app/src/components/Root/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ export const Root = ({ children }: PropsWithChildren<{}>) => (
<SidebarItem icon={LibraryBooks} to="docs" text="Docs" />
<SidebarItem icon={CreateComponentIcon} to="create" text="Create..." />
{/* End global nav */}
<SidebarDivider />
<SidebarScrollWrapper>
<SidebarItem icon={MapIcon} to="tech-radar" text="Tech Radar" />
</SidebarScrollWrapper>
</SidebarGroup>
<SidebarSpace />
<SidebarDivider />
Expand Down

0 comments on commit 421a585

Please sign in to comment.