@aws/nx-plugin-mcp 1.0.0-rc.25 → 1.0.0-rc.26
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/docs/guides/connection.mdx +12 -0
- package/package.json +1 -1
|
@@ -6,9 +6,21 @@ import Astro from '@astrojs/react';
|
|
|
6
6
|
import { CardGrid, LinkButton } from '@astrojs/starlight/components';
|
|
7
7
|
import Link from '@components/link.astro';
|
|
8
8
|
import ConnectionCard from '@components/connection-card.astro';
|
|
9
|
+
import RunGenerator from '@components/run-generator.astro';
|
|
10
|
+
import GeneratorParameters from '@components/generator-parameters.astro';
|
|
9
11
|
|
|
10
12
|
This generator is used to connect projects together, such as websites calling APIs. Simply select the source project (for example the project that will call your API) and target project (for example your API project), and this generator will handle integrating the two.
|
|
11
13
|
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
### Run the Generator
|
|
17
|
+
|
|
18
|
+
<RunGenerator generator="connection" />
|
|
19
|
+
|
|
20
|
+
### Options
|
|
21
|
+
|
|
22
|
+
<GeneratorParameters generator="connection" />
|
|
23
|
+
|
|
12
24
|
### Supported Connections
|
|
13
25
|
|
|
14
26
|
The Connection generator supports the following connections:
|