ework-aio 0.5.31 → 0.5.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ework-aio",
3
- "version": "0.5.31",
3
+ "version": "0.5.32",
4
4
  "description": "All-in-one installer for ework (issue tracker) + ework-daemon (AI bridge) + opencode-ework (plugin). One command: npm i -g ework-aio && ework-aio install.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/config.ts CHANGED
@@ -81,7 +81,7 @@ export const WEB_ENV_KEYS: readonly EnvKeySpec[] = [
81
81
  export const DAEMON_ENV_KEYS: readonly EnvKeySpec[] = [
82
82
  { envVar: "DAEMON_ENV", file: "daemon", generate: () => "production" },
83
83
  { envVar: "DAEMON_PORT", file: "daemon", generate: (c) => String(c.daemonPort) },
84
- { envVar: "DAEMON_HOST", file: "daemon", generate: () => "127.0.0.1" },
84
+ { envVar: "DAEMON_HOST", file: "daemon", generate: () => "0.0.0.0" },
85
85
  { envVar: "DAEMON_ENDPOINT", file: "daemon", generate: (c) => `127.0.0.1:${c.daemonPort}` },
86
86
  { envVar: "DAEMON_DB_PATH", file: "daemon", generate: (c) => c.paths.daemonDbPath },
87
87
  { envVar: "GITEA_URL", file: "daemon", generate: (c) => `http://127.0.0.1:${c.workPort}` },
package/src/types.ts CHANGED
@@ -69,7 +69,7 @@ export const SETTABLE_KEYS: readonly SettableKeySpec[] = [
69
69
  { key: "WORK_COMMENT_SORT", service: "web", description: "comment sort order: desc|asc" },
70
70
  { key: "DAEMON_PORT", service: "daemon", description: "ework-daemon listen port (default 3101)",
71
71
  propagate: { targetService: "web", targetKey: "WORK_DAEMON_WEBHOOK_URL", template: (v) => `http://127.0.0.1:${v}` } },
72
- { key: "DAEMON_HOST", service: "daemon", description: "ework-daemon bind address (default 127.0.0.1)" },
72
+ { key: "DAEMON_HOST", service: "daemon", description: "ework-daemon bind address (default 0.0.0.0 for multi-machine)" },
73
73
  { key: "OPENCODE_BINARY", service: "daemon", description: "opencode binary path" },
74
74
  { key: "OPENCODE_BASE_WORKDIR", service: "daemon", description: "opencode working directory base" },
75
75
  { key: "COMPLETION_CHECK_API_KEY", service: "daemon", description: "completion-check API key" },