File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ yarn-error.log*
4040
4141# local env files
4242.env * .local
43+ .env.local
4344
4445# vercel
4546.vercel
@@ -53,4 +54,4 @@ gcp.json
5354
5455supabase
5556
56- .env
57+ .env
Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ export class WorkflowPersistence {
126126 private supabase : ReturnType < typeof createClient < Database > >
127127
128128 constructor ( ) {
129- const supabaseUrl = process . env . SUPABASE_URL
130- const supabaseServiceKey = process . env . SUPABASE_SERVICE_ROLE_KEY
129+ const supabaseUrl = process . env . NEXT_PUBLIC_SUPABASE_URL
130+ const supabaseServiceKey = process . env . NEXT_PUBLIC_SUPABASE_SERVICE_ROLE_KEY
131131
132132 if ( ! supabaseUrl || ! supabaseServiceKey ) {
133133 throw new Error ( 'Supabase URL and service key are required.' )
You can’t perform that action at this time.
0 commit comments