Skip to content

Commit 41169a9

Browse files
authored
docs(devcontainers-backend): add clarifying text to README (#87)
* docs: add clarifying text to backend README * docs: fix formatting issue
1 parent 5dd4759 commit 41169a9

File tree

1 file changed

+7
-1
lines changed
  • plugins/backstage-plugin-devcontainers-backend

1 file changed

+7
-1
lines changed

plugins/backstage-plugin-devcontainers-backend/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ _Note: While this plugin can be used standalone, it has been designed to be a ba
2121

2222
## Setup
2323

24+
> [!WARNING]
25+
> All setup instructions assume you are using a Backstage deployment created with `@backstage/create-app` version `0.5.10` or earlier. Any later versions may or may not use Backstage's New Backend System (described [here](https://backstage.io/docs/backend-system/) and [here](https://backstage.io/docs/plugins/new-backend-system/)). We are currently evaluating how best to support the new system.
26+
2427
### Before you begin
2528

2629
Ensure that you have the following ready to go:
@@ -36,7 +39,7 @@ _Note: While this plugin has been developed and published by Coder, no Coder ins
3639
```shell
3740
yarn --cwd packages/backend add @coder/backstage-plugin-devcontainers-backend
3841
```
39-
2. Navigate to the `backend` directory's `catalog.ts` file
42+
2. Navigate to the `backend/src/plugins/catalog.ts` file (this file should automatically be created for you through `@backstage/create-app`)
4043
3. Import your source control manager provider of choice (Backstage has built-in support for GitHub, GitLab, and Bitbucket)
4144

4245
```ts
@@ -105,7 +108,10 @@ export default async function createPlugin(
105108
}),
106109
);
107110

111+
// ScaffolderEntitiesProcessor is one of the processors automatically
112+
// added to a newly-scaffolded application
108113
builder.addProcessor(new ScaffolderEntitiesProcessor());
114+
109115
builder.addProcessor(
110116
DevcontainersProcessor.fromConfig(env.config, {
111117
logger: env.logger,

0 commit comments

Comments
 (0)