Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 622 Bytes

signals.md

File metadata and controls

18 lines (12 loc) · 622 Bytes

Integration with signals

This plugin integrates with the @backstage/plugin-signals plugin. It provides real time updates to frontend from the backend.

At the moment, only question and answer statistics are updated in real time.

To integrate with signals, install signals-backend and add it to the backend:

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

const backend = createBackend();
backend.add(import('@backstage/signals-backend'));
backend.add(import('@drodil/backstage-plugin-qeta-backend'));

backend.start();