ework-aio 0.5.33 → 0.5.34
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 +2 -2
- package/src/config.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ework-aio",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.34",
|
|
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",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"ework-daemon": "^0.4.1",
|
|
50
50
|
"ework-router": "^0.1.5",
|
|
51
|
-
"ework-web": "^0.10.
|
|
51
|
+
"ework-web": "^0.10.15",
|
|
52
52
|
"opencode-ework": "^0.1.0",
|
|
53
53
|
"zod": "^3.23.0"
|
|
54
54
|
},
|
package/src/config.ts
CHANGED
|
@@ -62,6 +62,7 @@ function sharedWebhookSecret(): string {
|
|
|
62
62
|
export const WEB_ENV_KEYS: readonly EnvKeySpec[] = [
|
|
63
63
|
{ envVar: "WORK_PORT", file: "web", generate: (c) => String(c.workPort) },
|
|
64
64
|
{ envVar: "WORK_HOST", file: "web", generate: () => "0.0.0.0" },
|
|
65
|
+
{ envVar: "WORK_DATA_DIR", file: "web", generate: (c) => c.paths.dataDir },
|
|
65
66
|
{ envVar: "WORK_TOKEN", file: "web", secret: true, generate: () => hex(20) },
|
|
66
67
|
{ envVar: "WORK_COOKIE_SECRET", file: "web", secret: true, generate: () => hex(24) },
|
|
67
68
|
{ envVar: "WORK_OPERATOR_LOGIN", file: "web", generate: (c) => c.operatorLogin },
|