pipely-ai 1.3.4 → 1.3.6

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/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -511,8 +511,9 @@ function generateLocalEnv() {
511
511
  const jwtSecret = generateKey(64);
512
512
  const setupKey = randomUUID();
513
513
 
514
+ const dbPath = join(PIPELY_DIR, "data", "pipely.db").replace(/\\/g, "/");
514
515
  const env = `# Pipely AI — Local Mode
515
- DATABASE_URL=file:./data/pipely.db
516
+ DATABASE_URL=file:${dbPath}
516
517
  JWT_SECRET=${jwtSecret}
517
518
  OWNER_SETUP_KEY=${setupKey}
518
519
  FRONTEND_URL=http://localhost:3000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipely-ai",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "Pipely AI — Instale, gerencie e atualize com um unico comando",
5
5
  "type": "module",
6
6
  "bin": {