Get Costscope up and running in your Backstage app in minutes.
yarn workspace app add @costscope/backstage-pluginimport { createApiFactory, costscopeApiRef } from '@costscope/backstage-plugin';
apis.register(
createApiFactory({
api: costscopeApiRef,
deps: { discoveryApi, fetchApi, identityApi, errorApi, alertApi },
factory: (deps) => new CostscopeClient(deps),
}),
);import { CostscopePage } from '@costscope/backstage-plugin';
<Route path="/costscope" element={<CostscopePage />} />;Navigate to /costscope and start exploring your cloud costs!
Extended configuration, authentication, endpoints reference and FAQ have moved to: docs/CONFIGURATION_AND_FAQ.md