Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.21 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.21 KB

Clone and run locally

  1. You'll first need a Supabase project which can be made via the Supabase dashboard

  2. Rename .env.local.example to .env.local and update the following:

    NEXT_PUBLIC_SUPABASE_URL=[INSERT SUPABASE PROJECT URL]
    NEXT_PUBLIC_SUPABASE_ANON_KEY=[INSERT SUPABASE PROJECT API ANON KEY]
    

    Both NEXT_PUBLIC_SUPABASE_URL and NEXT_PUBLIC_SUPABASE_ANON_KEY can be found in your Supabase project's API settings

  3. You can now run the Next.js local development server:

    pnpm run dev

    The starter kit should now be running on localhost:3000.

Feedback and issues

Please file feedback and issues over on the offroadacademies GitHub.

References