From 76d4db1ea1f3acd0695e88a466c7738e16178836 Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Sat, 11 Apr 2026 17:01:00 +0200 Subject: [PATCH] chore: add turbo.json for chat-worker deploy task Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/chat-worker/turbo.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 apps/chat-worker/turbo.json diff --git a/apps/chat-worker/turbo.json b/apps/chat-worker/turbo.json new file mode 100644 index 0000000..1188f54 --- /dev/null +++ b/apps/chat-worker/turbo.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://turbo.build/schema.json", + "extends": ["//"], + "tasks": { + "deploy": { + "passThroughEnv": [ + "CLOUDFLARE_ACCOUNT_ID", + "CLOUDFLARE_API_TOKEN" + ], + "cache": false, + "outputLogs": "new-only" + } + } +}