@agentconnect.md/setup 1.40.0 → 1.41.0-rc.101
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/README.md +6 -5
- package/dist/index.js +74 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ more so the refreshed token contains that role.
|
|
|
30
30
|
|
|
31
31
|
Google is the shortest local sign-in path because its Web OAuth client accepts
|
|
32
32
|
the bundled bare `localhost` origins. Slack remains disabled until every
|
|
33
|
-
required public
|
|
33
|
+
required public service URL uses HTTPS.
|
|
34
34
|
|
|
35
35
|
## Run from source
|
|
36
36
|
|
|
@@ -45,12 +45,13 @@ default. `HOST` and `PORT` control the binding. `DATABASE_URL` and the
|
|
|
45
45
|
`SECRET_CIPHER`/`VAULT_*` root settings remain startup environment because they
|
|
46
46
|
are needed before the deployment database can be opened.
|
|
47
47
|
|
|
48
|
-
The public service
|
|
48
|
+
The public service base URLs are also startup environment. Control Plane and
|
|
49
|
+
Relay URLs may include an ingress path prefix:
|
|
49
50
|
|
|
50
51
|
```dotenv
|
|
51
|
-
AGENTCONNECT_PUBLIC_WEB_URL=
|
|
52
|
-
AGENTCONNECT_PUBLIC_CP_URL=
|
|
53
|
-
AGENTCONNECT_PUBLIC_RELAY_URL=
|
|
52
|
+
AGENTCONNECT_PUBLIC_WEB_URL=https://gateway.example.test
|
|
53
|
+
AGENTCONNECT_PUBLIC_CP_URL=https://gateway.example.test/cp
|
|
54
|
+
AGENTCONNECT_PUBLIC_RELAY_URL=https://gateway.example.test/relay
|
|
54
55
|
```
|
|
55
56
|
|
|
56
57
|
Setup shows these values at the top because GitHub and Slack manifests
|