@@ -91,7 +91,8 @@ overall API.
91
91
This will serve as the parent project.
92
92
93
93
``` ddn
94
- ddn supergraph init <parent-project> && cd <parent-project> && git init
94
+ # If you don't have a data plane provisioned, please contact your AI strategist
95
+ ddn supergraph init <parent-project> --project-data-plane-id <your-data-plane-id> && cd <parent-project> && git init
95
96
```
96
97
97
98
This will scaffold the local configuration for your PromptQL project and initialize a Git repository.
@@ -101,7 +102,8 @@ This will scaffold the local configuration for your PromptQL project and initial
101
102
This is based on the local parent project.
102
103
103
104
``` ddn
104
- ddn project init
105
+ # If you don't have a data plane provisioned, please contact your AI strategist
106
+ ddn project init --data-plane-id <your-data-plane-id>
105
107
```
106
108
107
109
In your configuration file (e.g., ` .hasura/context.yaml ` ), you'll see a new ` project ` entry with the name of the project
@@ -164,7 +166,8 @@ The invited user will need to create a new supergraph on their machine with a ne
164
166
They will use the same name for the subgraph as was created in the parent project.
165
167
166
168
``` ddn
167
- ddn supergraph init <subgraph-name-as-supergraph-name> --create-subgraph <subgraph-name> && cd <subgraph-name> && git init
169
+ # If you don't have a data plane provisioned, please contact your AI strategist
170
+ ddn supergraph init <subgraph-name-as-supergraph-name> --create-subgraph <subgraph-name> --project-data-plane-id <your-data-plane-id> && cd <subgraph-name> && git init
168
171
```
169
172
170
173
This scaffolds the necessary structure and initializes a Git repository.
@@ -174,7 +177,8 @@ This scaffolds the necessary structure and initializes a Git repository.
174
177
This will initialize the cloud project as the parent project.
175
178
176
179
``` ddn
177
- ddn project init --with-project <parent-project-name>
180
+ # If you don't have a data plane provisioned, please contact your AI strategist
181
+ ddn project init --with-project <parent-project-name> --data-plane-id <your-data-plane-id>
178
182
```
179
183
180
184
Your configuration file will now link the local subgraph to the parent project.
0 commit comments