Add CodeScene plugin

[CodeScene](https://codescene.com/) is a multi-purpose tool bridging code, business and people. See hidden risks and social patterns in your code. Prioritize and reduce technical debt.

Signed-off-by: Julio Zynger <julio.zynger@soundcloud.com>
This commit is contained in:
Julio Zynger
2022-04-12 12:41:22 +02:00
parent 6de4927c75
commit 9bc6e9493f
31 changed files with 1615 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
/*
* Copyright 2022 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import {
codescenePlugin,
CodescenePage,
CodesceneProjectDetailsPage,
} from '../src/plugin';
createDevApp()
.registerPlugin(codescenePlugin)
.addPage({
element: <CodescenePage />,
title: 'Root Page',
path: '/codescene',
})
.addPage({
element: <CodesceneProjectDetailsPage />,
title: 'Details Page',
path: '/codescene/:projectId',
})
.render();