first commit

This commit is contained in:
AyrisAI
2026-08-20 01:51:59 +03:00
commit 97b83c7fd4
109 changed files with 21215 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { createClient } from "@supabase/supabase-js";
import { env } from "../env.js";
export const supabase =
env.SUPABASE_URL && env.SUPABASE_SERVICE_ROLE_KEY
? createClient(env.SUPABASE_URL, env.SUPABASE_SERVICE_ROLE_KEY)
: null;