@kody-ade/kody-engine-lite 0.1.146 → 0.1.147

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/dist/bin/cli.js +5 -7
  2. package/package.json +1 -1
package/dist/bin/cli.js CHANGED
@@ -1193,13 +1193,11 @@ async function tryStartLitellm(url, projectDir, generatedConfig) {
1193
1193
  const child = spawn3(cmd, args2, {
1194
1194
  stdio: ["ignore", "pipe", "pipe"],
1195
1195
  detached: true,
1196
- env: {
1197
- ...process.env,
1198
- ...dotenvVars,
1199
- // Remove DATABASE_URL so LiteLLM doesn't try to set up Prisma DB
1200
- // (DATABASE_URL may be set for the project's dev server, not for LiteLLM)
1201
- DATABASE_URL: ""
1202
- }
1196
+ env: (() => {
1197
+ const env = { ...process.env, ...dotenvVars };
1198
+ delete env.DATABASE_URL;
1199
+ return env;
1200
+ })()
1203
1201
  });
1204
1202
  let proxyStderr = "";
1205
1203
  child.stderr?.on("data", (chunk) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.146",
3
+ "version": "0.1.147",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",