You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/docs/guides/full-example.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ cpExt := extension.New(
104
104
Host: dockerHost,
105
105
Network: dockerNetwork,
106
106
})),
107
-
extension.WithBasePath("/api/cp"),
107
+
extension.WithBasePath("/ctrlplane"),
108
108
extension.WithAuthProvider(&auth.NoopProvider{
109
109
DefaultTenantID: "default",
110
110
DefaultClaims: &auth.Claims{
@@ -118,7 +118,7 @@ cpExt := extension.New(
118
118
forgeApp.RegisterExtension(cpExt)
119
119
```
120
120
121
-
The extension mounts all 50+ Ctrl Plane API routes under `/api/cp` and starts background workers for reconciliation, health checks, and telemetry collection.
121
+
The extension mounts all 50+ Ctrl Plane API routes under `/ctrlplane` and starts background workers for reconciliation, health checks, and telemetry collection.
122
122
123
123
## Step 4: Event subscriptions
124
124
@@ -229,15 +229,15 @@ Once the server is running, try these commands:
0 commit comments