Badson
Badson
TTypebot
Created by Badson on 9/29/2024 in #help-and-questions
VERCEL BUG?
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
10 replies
TTypebot
Created by Badson on 9/29/2024 in #help-and-questions
VERCEL BUG?
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 } } }
10 replies
TTypebot
Created by Badson on 5/15/2024 in #help-and-questions
Webhook for my bot
No description
9 replies
TTypebot
Created by Badson on 5/15/2024 in #help-and-questions
Webhook for my bot
I'm still having trouble creating a webhook. I don't know where the problem is. Make.com indicates that the configuration is correct, but when I try to do interactions nothing plays. The logs do not indicate any errors
9 replies
TTypebot
Created by Badson on 5/15/2024 in #help-and-questions
Webhook for my bot
Hi Baptiste, thank you for your response. I want to create a webhook that will directly call the bot when interacting. I want to connect the bot to the audio interface and at startup, the bot would speak. I tried to create a webhook in make.com but unfortunately it doesn't work.
9 replies