opendray 2.7.0 → 2.7.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.
Files changed (2) hide show
  1. package/README.md +11 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -25,13 +25,20 @@ automatically via `optionalDependencies` — no post-install network call.
25
25
 
26
26
  ## Usage
27
27
 
28
+ `opendray` ships the whole gateway — the web admin is embedded, so there is no
29
+ Node runtime or separate web server at deploy time. You bring a PostgreSQL 15+
30
+ database (with the `pgvector` extension) and start it yourself:
31
+
28
32
  ```sh
29
- opendray --help
30
- opendray serve --config /etc/opendray/config.toml
33
+ export OPENDRAY_DATABASE_URL="postgres://opendray:pw@127.0.0.1:5432/opendray?sslmode=disable"
34
+ export OPENDRAY_ADMIN_PASSWORD="$(openssl rand -base64 24)"
35
+ opendray migrate # apply schema (idempotent)
36
+ opendray serve # run in foreground → http://127.0.0.1:8770/admin/
31
37
  ```
32
38
 
33
- See the [quickstart](https://github.com/Opendray/opendray/blob/main/docs/quickstart.md)
34
- for first-run setup (Postgres, admin credentials, channel configuration).
39
+ See the [binary install guide](https://github.com/Opendray/opendray/blob/main/docs/install-binary.md)
40
+ for the full first-run walkthrough pgvector setup, `config.toml`, and running
41
+ as a systemd / launchd service.
35
42
 
36
43
  ## Supported platforms
37
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opendray",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "description": "Self-hosted gateway that runs Claude Code / Codex / Gemini / 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.7.0",
38
- "opendray-linux-arm64": "2.7.0",
39
- "opendray-darwin-x64": "2.7.0",
40
- "opendray-darwin-arm64": "2.7.0"
37
+ "opendray-linux-x64": "2.7.1",
38
+ "opendray-linux-arm64": "2.7.1",
39
+ "opendray-darwin-x64": "2.7.1",
40
+ "opendray-darwin-arm64": "2.7.1"
41
41
  }
42
42
  }