runway

Runway

Supabase Setup

Setting up Supabase for authentication and database access.

  1. Create a Supabase account.

  2. Create a new project.

  3. Get your project URL and anon public API key, they should look something like this:

    plaintext

    1https://<project-id>.supabase.co

    plaintext

    1eyXXX.eyXXX.C-UIPXXX
  4. Copy them into .env.local:

    .env.local

    1NEXT_PUBLIC_SUPABASE_URL=https://<project-id>.supabase.co
    2NEXT_PUBLIC_SUPABASE_ANON_KEY=eyXXX.eyXXX.C-UIPXXX
  5. And you're ready to go!