nodeboot-starter-backstage
Installation
SKILL.md
@nodeboot/starter-backstage
Use this starter when a Node-Boot service needs to query the Backstage software catalog or discover plugin base URLs. @EnableBackstage() registers CatalogClient, PluginDiscoveryService, and BackstageIntegrationConfig from app config.
Enable
@EnableDI(Container)
@EnableBackstage()
@EnableComponentScan()
@NodeBootApplication()
export class MyApplication implements NodeBootApp {
start(): Promise<NodeBootAppView> {
return NodeBoot.run(ExpressServer);
}
}