Session 7b: Fix pipeline - body parser, Redis queueing, poller visibility, auto-start

This commit is contained in:
Kev
2026-06-10 01:22:55 -04:00
parent b0890dadae
commit 5c44922937
11 changed files with 322 additions and 27 deletions
+6 -1
View File
@@ -15,9 +15,14 @@ function getSupabaseClient() {
function getSupabaseServiceClient() {
if (!serviceClient) {
// SUPABASE_SERVICE_ROLE_KEY is the canonical name across .env.example
// and the Next.js side. The fallback to SUPABASE_SERVICE_KEY supports
// any deployment still set with the legacy variable so the rename
// doesn't take down a running instance — remove the fallback once all
// Coolify envs are updated.
serviceClient = createClient(
process.env.SUPABASE_URL,
process.env.SUPABASE_SERVICE_KEY
process.env.SUPABASE_SERVICE_ROLE_KEY || process.env.SUPABASE_SERVICE_KEY
);
}
return serviceClient;