-
-
Notifications
You must be signed in to change notification settings - Fork 28
signals
github-actions[bot] edited this page Nov 28, 2024
·
1 revision
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();