@panorama-ai/gateway 2.24.102 → 2.24.108
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 +25 -4
- package/dist/database.types.d.ts +5365 -0
- package/dist/database.types.d.ts.map +1 -0
- package/dist/database.types.js +9 -0
- package/dist/database.types.js.map +1 -0
- package/dist/index.js +220 -92
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,25 +18,37 @@ SUPABASE_ANON_KEY="your-anon-key" \
|
|
|
18
18
|
pnpm --filter @panorama-ai/gateway dev -- pair <PAIRING_CODE>
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Start the gateway and begin listening for jobs:
|
|
21
|
+
Start the gateway and begin listening for jobs (foreground in dev, background for built CLI):
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
pnpm --filter @panorama-ai/gateway dev -- start
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Force the gateway into the background (built binary only):
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
pnpm --filter @panorama-ai/gateway build
|
|
31
31
|
pnpm --filter @panorama-ai/gateway start -- --daemon
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
Run in the foreground (built binary):
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pnpm --filter @panorama-ai/gateway start -- --foreground
|
|
38
|
+
```
|
|
39
|
+
|
|
34
40
|
Stop the gateway:
|
|
35
41
|
|
|
36
42
|
```bash
|
|
37
43
|
pnpm --filter @panorama-ai/gateway dev -- stop
|
|
38
44
|
```
|
|
39
45
|
|
|
46
|
+
Check gateway status:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pnpm --filter @panorama-ai/gateway dev -- status
|
|
50
|
+
```
|
|
51
|
+
|
|
40
52
|
Tail logs:
|
|
41
53
|
|
|
42
54
|
```bash
|
|
@@ -50,10 +62,19 @@ Optional flags:
|
|
|
50
62
|
- `--anon-key "..."`
|
|
51
63
|
- `--env local|dev|test|stage|prod`
|
|
52
64
|
- `--env-file /path/to/.env`
|
|
53
|
-
- `--
|
|
65
|
+
- `--foreground` (run in the foreground)
|
|
66
|
+
- `--daemon` (force background for built CLI)
|
|
67
|
+
- `--config-dir /path/to/dir`
|
|
68
|
+
- `--config-path /path/to/gateway.json`
|
|
69
|
+
- `--log-path /path/to/gateway.log`
|
|
70
|
+
- `--pid-path /path/to/gateway.pid`
|
|
71
|
+
- `--claude-cli /path/to/claude`
|
|
72
|
+
- `--codex-cli /path/to/codex`
|
|
73
|
+
- `--gemini-cli /path/to/gemini`
|
|
74
|
+
- `--claude-home /path/to/claude-home`
|
|
54
75
|
- `--no-follow` (show logs without follow)
|
|
55
76
|
|
|
56
|
-
The gateway stores credentials in `~/.panorama/gateway.json` by default. Override with `PANORAMA_GATEWAY_CONFIG_PATH`.
|
|
77
|
+
The gateway stores credentials in `~/.panorama/gateway.json` by default. Override with `--config-path` or `PANORAMA_GATEWAY_CONFIG_PATH`.
|
|
57
78
|
|
|
58
79
|
## Environment
|
|
59
80
|
|