Skip to content

Commit ea0c89f

Browse files
committed
edits from feedback
1 parent 2857ec1 commit ea0c89f

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Backstage Plugins
22

3-
A collection of plugins that extend [Backstage](https://backstage.io) to help with developer onboarding, context switching, and inner loop software development.
3+
A collection of plugins that extend [Backstage](https://backstage.io) to help with developer onboarding, context switching, and automated IDE environments (remote or local).
44

55
- [backstage-plugin-coder](./plugins/backstage-plugin-coder/README.md): A plugin for integrating Coder workspaces with Backstage.
6-
- [backstage-plugin-devcontainers](./plugins/backstage-plugin-devcontainers/README.md): A plugin for integrating VS Code Dev Containers extension with Backstage catalog items (no Coder deployment necessary).
6+
- [backstage-plugin-devcontainers-backend](./plugins/backstage-plugin-devcontainers/README.md): A plugin for integrating VS Code Dev Containers extension with Backstage catalog items (no Coder deployment necessary).
77

88
Please use [GitHub issues](https://github.com/coder/backstage-plugins/issues) to report any issues or feature requests.
99

plugins/backstage-plugin-coder/README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Coder Backstage Plugin
1+
# @coder/backstage-plugin-coder
22

33
Create and manage [Coder workspaces](https://coder.com/docs/v2/latest) from Backstage.
44

5+
<!-- TOOD: Add Loom -->
6+
57
## Screenshots
68

79
![Coder authentication](./screenshots/coder-auth.png)
@@ -13,7 +15,7 @@ Create and manage [Coder workspaces](https://coder.com/docs/v2/latest) from Back
1315
- Users link their Coder accounts with Backstage via tokens
1416
- Associate Coder workspaces with catalog items in Backstage
1517
- Workspace list component for viewing and managing workspaces
16-
- Full Coder API access for custom plugins & integrations
18+
<!-- - Full Coder API access for custom plugins & integrations -->
1719

1820
## Setup
1921

@@ -87,9 +89,9 @@ the devcontainer.
8789
);
8890
```
8991

90-
> Note: You can also wrap a single page or component with `CoderProvider` if you only need Coder in a specific part of your app. See our [API reference](#TODO) for more details.
92+
<!-- > Note: You can also wrap a single page or component with `CoderProvider` if you only need Coder in a specific part of your app. See our [API reference](#TODO) for more details. -->
9193

92-
1. Add the `WorkspacesList` card to the entity page in your app:
94+
1. Add the `CoderWorkspacesCard` card to the entity page in your app:
9395

9496
```tsx
9597
// In packages/app/src/components/catalog/EntityPage.tsx
@@ -102,9 +104,9 @@ the devcontainer.
102104
</Grid>;
103105
```
104106

105-
See [the plugin documentation](./docs) for full configuration options and API reference.
107+
<!-- Individual components of the card can also be imported. See [the plugin documentation](./docs) for full configuration options and API reference. -->
106108

107-
### API Access
109+
<!-- ### API Access
108110

109111
The plugin provides a `CoderApi` instance for accessing the Coder API. This can be used in custom plugins and integrations. Here is an example component that lists all templates:
110112

@@ -117,7 +119,7 @@ import { useCoder } from '@coder/backstage-plugin-coder';
117119
// with a refresh button
118120
```
119121

120-
See to the [Coder REST API Reference](https://coder.com/docs/v2/latest/api) for more details
122+
See to the [Coder REST API Reference](https://coder.com/docs/v2/latest/api) for more details -->
121123

122124
## Roadmap
123125

0 commit comments

Comments
 (0)