From fc360fd2ca7d2b2dfad9986022635ff9ddd27896 Mon Sep 17 00:00:00 2001 From: Aarish <118203269+ImprobableGenius@users.noreply.github.com> Date: Fri, 23 May 2025 22:38:59 -0500 Subject: [PATCH] Build a autheticaiton module for supabase --- auth.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 auth.js diff --git a/auth.js b/auth.js new file mode 100644 index 0000000..61a0439 --- /dev/null +++ b/auth.js @@ -0,0 +1,8 @@ +const { createClient } = require('@supabase/supabase-js'); + +const supabase = createClient( + 'https://rwulmnzzmieuosakijoe.supabase.co', + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InJ3dWxtbnp6bWlldW9zYWtpam9lIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDgwNTQ4NDEsImV4cCI6MjA2MzYzMDg0MX0.ZEBJ6v0-u77z1cqRJvA8WOcGRxd8fcN0vqeYJNQgd_U' +); + +module.exports.supabase = supabase; \ No newline at end of file