I found a solution, update your turbo.json:
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env"],
"globalEnv": ["DATABASE_URL", "SKIP_ENV_CHECK"],
"globalPassThroughEnv": ["ENCRYPTION_SECRET"],
"tasks": {
"dev": {
"dependsOn": ["^db:generate", "^db:push", "@typebot.io/react#build"],
"persistent": true
},
"build": {
"env": ["VERCEL_*", "NEXTAUTH_URL", "SENTRY_*", "LANDING_PAGE_URL"],
"dependsOn": ["^build", "^db:generate"],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**",
"build/**",
"public/__ENV.js"
],
"inputs": ["$TURBO_DEFAULT$", ".env"],
"outputLogs": "new-only"
},
"db:migrate": {
"dependsOn": ["@typebot.io/prisma#db:generate"], // Dodaj zależność od generowania schematu
"env": ["DATABASE_URL"], // Upewnij się, że zmienna środowiskowa jest ustawiona
"cache": false
},
"docs#build": {
"dependsOn": ["api:generate"],
"outputs": ["build/**"],
"outputLogs": "new-only"
},
"api:generate": {
"dependsOn": ["bot-engine#build", "@typebot.io/prisma#db:generate"],
"cache": false
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:cleanDatabase": {
"env": ["NEXTAUTH_URL"],
"dependsOn": ["@typebot.io/prisma#db:generate"],
"cache": false
},
"checkAndReportChatsUsage": {
"env": ["STRIPE_*", "NEXTAUTH_URL", "SMTP_*"],
"dependsOn": ["@typebot.io/prisma#db:generate"],
"cache": false
},
"//#format-and-lint": {},
"//#format-and-lint:fix": {
"cache": false
}
}
}
then upgrade your package.json:
{
"scripts": {
"db:migrate": "prisma migrate deploy --schema=../../packages/prisma/postgresql/schema.prisma",
"dev": "dotenv -e ./.env -e ../../.env -- next dev -p 3000",
"build": "dotenv -e ./.env -e ../../.env -- next build",
"start": "dotenv -e ./.env -e ../../.env -- next start",
"test": "dotenv -e ./.env -e ../../.env -- playwright test",
"test:show-report": "playwright show-report src/test/reporters",
"test:ui": "dotenv -e ./.env -e ../../.env -- playwright test --ui"
}
}
and it works for me