0.2.4 • Published 1 year ago

@baicheng-michael/backstage-plugin-open-feedback-backend v0.2.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

OpenFeedback Backend

This plugin serves as the backend for OpenFeedback.

Adding the OpenFeedback Backend to your Backstage Application

To add the OpenFeedback backend to your Backstage application, you need to add the following code to your packages/backend/src/plugins/index.ts file:

import { createBackend } from '@backstage/backend-defaults';

const backend = createBackend();

// Other plugins
backend.add(import('@baicheng-michael/backstage-plugin-open-feedback-backend'));

backend.start();