beads-enhanced-ui 0.1.3 → 0.1.4
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/CHANGES.md +8 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/server/cli/open.js +1 -1
- package/server/cli/usage.js +1 -1
- package/server/config.js +1 -1
package/CHANGES.md
CHANGED
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ See `bdui --help` for options.
|
|
|
55
55
|
- `BDUI_RUNTIME_DIR`: override runtime directory for PID/logs. Defaults to
|
|
56
56
|
`$XDG_RUNTIME_DIR/beads-ui` or the system temp dir.
|
|
57
57
|
- `HOST`: overrides the bind address (default `127.0.0.1`).
|
|
58
|
-
- `PORT`: overrides the listen port (default `
|
|
58
|
+
- `PORT`: overrides the listen port (default `3050`).
|
|
59
59
|
|
|
60
60
|
These can also be set via CLI options: `bdui start --host 0.0.0.0 --port 8080`
|
|
61
61
|
|
package/package.json
CHANGED
package/server/cli/open.js
CHANGED
|
@@ -102,7 +102,7 @@ function sleep(ms) {
|
|
|
102
102
|
* Register a workspace with the running server.
|
|
103
103
|
* Makes a POST request to /api/register-workspace.
|
|
104
104
|
*
|
|
105
|
-
* @param {string} base_url - Server base URL (e.g., "http://127.0.0.1:
|
|
105
|
+
* @param {string} base_url - Server base URL (e.g., "http://127.0.0.1:3050")
|
|
106
106
|
* @param {{ path: string, database: string }} workspace
|
|
107
107
|
* @returns {Promise<boolean>} True if registration succeeded
|
|
108
108
|
*/
|
package/server/cli/usage.js
CHANGED
|
@@ -18,7 +18,7 @@ export function printUsage(out_stream) {
|
|
|
18
18
|
' -d, --debug Enable debug logging',
|
|
19
19
|
' --open Open the browser after start/restart',
|
|
20
20
|
' --host <addr> Bind to a specific host (default: 127.0.0.1)',
|
|
21
|
-
' --port <num> Bind to a specific port (default:
|
|
21
|
+
' --port <num> Bind to a specific port (default: 3050)',
|
|
22
22
|
''
|
|
23
23
|
];
|
|
24
24
|
for (const line of lines) {
|