@rothenbergt/backstage-plugin-search-backend-module-roadmap
v0.2.1
Published
Search backend module that indexes roadmap features in Backstage search
Readme
@rothenbergt/backstage-plugin-search-backend-module-roadmap
A search backend module that indexes roadmap features from
@rothenbergt/backstage-plugin-roadmap-backend
into Backstage global search. Searching for a feature title or description
takes you straight to that feature's details drawer on the roadmap board.
Installation
yarn add @rothenbergt/backstage-plugin-search-backend-module-roadmap --cwd packages/backendAdd the module to your packages/backend/src/index.ts:
backend.add(import('@backstage/plugin-search-backend'));
backend.add(
import('@rothenbergt/backstage-plugin-search-backend-module-roadmap'),
);The roadmap backend plugin must also be installed.
Configuration
The collator runs every 10 minutes by default. Override the schedule in
app-config.yaml if you like:
search:
collators:
roadmap:
schedule:
frequency: { minutes: 30 }
timeout: { minutes: 5 }
initialDelay: { seconds: 10 }