@secustor/backstage-plugin-renovate-backend-module-runtime-direct
Version:
The runtime-direct backend module for the renovate plugin.
33 lines (23 loc) • 831 B
Markdown
This plugin provides a runtime implementation for the Renovate backend plugin.
It is a direct runtime implementation, meaning that Renovate will run directly on the backend node as a forked process.
> ![NOTE]
> Starting with version `1.0.0` this plugin is using Renovate v40 which requires Node.js v22.13.0 or higher.
Install the plugin:
```bash
yarn --cwd packages/backend add @secustor/backstage-plugin-renovate-backend-module-runtime-direct
```
Add the plugin to your Backstage instance:
```ts
// Add the following to `packages/backend/src/index.ts`
backend.add(
import('@secustor/backstage-plugin-renovate-backend-module-runtime-direct'),
);
```
```yaml
renovate:
runtime:
type: direct
```