Hello, I’m trying to use Supabase in this project and I saw this code: #1
Closed
the-code3r
started this conversation in
General
Replies: 1 comment
-
|
Yes, you need to create your own Supabase project and database, then add your keys in your own |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import { createClient } from "@supabase/supabase-js";
const supabaseUrl = "...";
const supabaseKey = "...";
const supabase = createClient(supabaseUrl, supabaseKey);
export default supabase;
My question is: where should I get the supabaseUrl and supabaseKey for this project?
Should I create my own Supabase project or are these values provided somewhere in the repository setup?
Thanks for your help.
Beta Was this translation helpful? Give feedback.
All reactions