We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2655267 commit 5ff987fCopy full SHA for 5ff987f
2 files changed
.gitignore
@@ -40,6 +40,7 @@ yarn-error.log*
40
41
# local env files
42
.env*.local
43
+.env.local
44
45
# vercel
46
.vercel
@@ -53,4 +54,4 @@ gcp.json
53
54
55
supabase
56
-.env
57
+.env
lib/workflow-persistence.ts
@@ -126,8 +126,8 @@ export class WorkflowPersistence {
126
private supabase: ReturnType<typeof createClient<Database>>
127
128
constructor() {
129
- const supabaseUrl = process.env.SUPABASE_URL
130
- const supabaseServiceKey = process.env.SUPABASE_SERVICE_ROLE_KEY
+ const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL
+ const supabaseServiceKey = process.env.NEXT_PUBLIC_SUPABASE_SERVICE_ROLE_KEY
131
132
if (!supabaseUrl || !supabaseServiceKey) {
133
throw new Error('Supabase URL and service key are required.')
0 commit comments