@agentconnect.md/setup 1.36.0 → 1.36.1-rc.1
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 +9 -5
- package/dist/index.js +52 -38
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,14 +20,18 @@ docker compose -f compose.yaml -f compose.logto.yaml up -d
|
|
|
20
20
|
Open:
|
|
21
21
|
|
|
22
22
|
- Tenant Admin: `http://localhost:8091`
|
|
23
|
-
- Logto Console: `http://
|
|
24
|
-
- AgentConnect: `http://
|
|
23
|
+
- Logto Console: `http://localhost:3002`
|
|
24
|
+
- AgentConnect: `http://localhost:3000`
|
|
25
25
|
|
|
26
26
|
Tenant Admin first guides the operator through Logto Management API setup. It
|
|
27
27
|
does not display deployment configuration until an administrator has signed
|
|
28
28
|
in. The first signed-in user is assigned the shared `ADMIN` role; sign in once
|
|
29
29
|
more so the refreshed token contains that role.
|
|
30
30
|
|
|
31
|
+
Google is the shortest local sign-in path because its Web OAuth client accepts
|
|
32
|
+
the bundled bare `localhost` origins. Slack remains disabled until every
|
|
33
|
+
required public origin uses HTTPS.
|
|
34
|
+
|
|
31
35
|
## Run from source
|
|
32
36
|
|
|
33
37
|
Start the database and optional Logto services, then run the server directly:
|
|
@@ -44,9 +48,9 @@ are needed before the deployment database can be opened.
|
|
|
44
48
|
The public service origins are also startup environment:
|
|
45
49
|
|
|
46
50
|
```dotenv
|
|
47
|
-
AGENTCONNECT_PUBLIC_WEB_URL=http://
|
|
48
|
-
AGENTCONNECT_PUBLIC_CP_URL=http://
|
|
49
|
-
AGENTCONNECT_PUBLIC_RELAY_URL=http://
|
|
51
|
+
AGENTCONNECT_PUBLIC_WEB_URL=http://localhost:3000
|
|
52
|
+
AGENTCONNECT_PUBLIC_CP_URL=http://localhost:8080
|
|
53
|
+
AGENTCONNECT_PUBLIC_RELAY_URL=http://localhost:8090
|
|
50
54
|
```
|
|
51
55
|
|
|
52
56
|
Tenant Admin shows these values at the top because GitHub and Slack manifests
|