opendray 2.13.3 → 2.14.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 +5 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,11 +21,11 @@ yarn global add opendray
|
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
The right platform binary (Linux x64/arm64, macOS x64/arm64) is selected
|
|
24
|
-
automatically via `optionalDependencies
|
|
24
|
+
automatically via `optionalDependencies`, with no post-install network call.
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
27
27
|
|
|
28
|
-
`opendray` ships the whole gateway
|
|
28
|
+
`opendray` ships the whole gateway: the web admin is embedded, so there is no
|
|
29
29
|
Node runtime or separate web server at deploy time. You bring a PostgreSQL 15+
|
|
30
30
|
database (with the `pgvector` extension) and start it yourself:
|
|
31
31
|
|
|
@@ -37,7 +37,7 @@ opendray serve # run in foreground → http://127.0.0.1:8770/admin/
|
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
See the [binary install guide](https://github.com/Opendray/opendray/blob/main/docs/install-binary.md)
|
|
40
|
-
for the full first-run walkthrough
|
|
40
|
+
for the full first-run walkthrough: pgvector setup, `config.toml`, and running
|
|
41
41
|
as a systemd / launchd service.
|
|
42
42
|
|
|
43
43
|
## Supported platforms
|
|
@@ -47,8 +47,8 @@ as a systemd / launchd service.
|
|
|
47
47
|
| Linux | x64, arm64 |
|
|
48
48
|
| macOS | x64, arm64 |
|
|
49
49
|
|
|
50
|
-
Windows is not yet packaged
|
|
50
|
+
Windows is not yet packaged. Track [opendray#XXX](https://github.com/Opendray/opendray/issues).
|
|
51
51
|
|
|
52
52
|
## License
|
|
53
53
|
|
|
54
|
-
Apache-2.0
|
|
54
|
+
Apache-2.0, see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opendray",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.1",
|
|
4
4
|
"description": "Self-hosted gateway that runs Claude Code / Codex / Antigravity / shell sessions on your own infrastructure. CLI installer wrapper around the official Go release binary.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://opendray.dev",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"node": ">=18"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"opendray-linux-x64": "2.
|
|
38
|
-
"opendray-linux-arm64": "2.
|
|
39
|
-
"opendray-darwin-x64": "2.
|
|
40
|
-
"opendray-darwin-arm64": "2.
|
|
37
|
+
"opendray-linux-x64": "2.14.1",
|
|
38
|
+
"opendray-linux-arm64": "2.14.1",
|
|
39
|
+
"opendray-darwin-x64": "2.14.1",
|
|
40
|
+
"opendray-darwin-arm64": "2.14.1"
|
|
41
41
|
}
|
|
42
42
|
}
|