@spacelift-io/backstage-integration-backend 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This backend plugin for Backstage integrates with Spacelift to provide informati
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# From your Backstage root directory
|
|
11
|
-
yarn --cwd packages/backend add @spacelift/backstage-integration-backend
|
|
11
|
+
yarn --cwd packages/backend add @spacelift-io/backstage-integration-backend
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
2. Add the plugin to your backend in `packages/backend/src/index.ts`:
|
|
@@ -19,7 +19,7 @@ This backend plugin for Backstage integrates with Spacelift to provide informati
|
|
|
19
19
|
|
|
20
20
|
const backend = createBackend();
|
|
21
21
|
// ...
|
|
22
|
-
backend.add(import('@spacelift/backstage-integration-backend'));
|
|
22
|
+
backend.add(import('@spacelift-io/backstage-integration-backend'));
|
|
23
23
|
// ...
|
|
24
24
|
await backend.start();
|
|
25
25
|
```
|
|
@@ -38,10 +38,20 @@ spacelift:
|
|
|
38
38
|
Make sure to replace `<your-subdomain>` with your actual Spacelift subdomain.
|
|
39
39
|
The `apiKey` and `apiSecret` should be stored securely, for example, as environment variables.
|
|
40
40
|
|
|
41
|
+
## Compatibility
|
|
42
|
+
|
|
43
|
+
This plugin requires:
|
|
44
|
+
|
|
45
|
+
- `@backstage/backend-plugin-api` >= 1.3.0
|
|
46
|
+
- `@backstage/backend-defaults` >= 0.9.0
|
|
47
|
+
- `@backstage/catalog-client` >= 1.9.1
|
|
48
|
+
|
|
49
|
+
It is compatible with Backstage 1.17.0 or later.
|
|
50
|
+
|
|
41
51
|
## Frontend Plugin
|
|
42
52
|
|
|
43
|
-
This backend plugin is intended to be used with the [Spacelift Frontend Plugin](
|
|
53
|
+
This backend plugin is intended to be used with the [Spacelift Frontend Plugin](https://github.com/spacelift-io/backstage-plugins/blob/main/packages/spacelift-io-frontend/README.md).
|
|
44
54
|
|
|
45
55
|
## Spacelift Documentation
|
|
46
56
|
|
|
47
|
-
For more information about Spacelift and its API, please refer to the [official Spacelift documentation](https://docs.spacelift.io/).
|
|
57
|
+
For more information about Spacelift and its API, please refer to the [official Spacelift documentation](https://docs.spacelift.io/integrations/external-integrations/backstage).
|