From 47ccafe489b19cda0f58c31b70adcf93d862a091 Mon Sep 17 00:00:00 2001 From: YK <1811651+ykdojo@users.noreply.github.com> Date: Sun, 28 Aug 2022 07:49:29 -0700 Subject: [PATCH 1/2] Update README.md --- examples/with-supabase-auth-realtime-db/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/examples/with-supabase-auth-realtime-db/README.md b/examples/with-supabase-auth-realtime-db/README.md index 0ab98a0f28ef..8de09b439d68 100644 --- a/examples/with-supabase-auth-realtime-db/README.md +++ b/examples/with-supabase-auth-realtime-db/README.md @@ -8,6 +8,18 @@ The Vercel deployment will guide you through creating a Supabase account and pro [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-supabase-auth-realtime-db&project-name=nextjs-with-supabase-auth&repository-name=nextjs-with-supabase-auth&integration-ids=oac_jUduyjQgOyzev1fjrW83NYOv) +## Test locally + +Step 1. ``cd`` into this directory. + +Step 2. run ``npm install`` + +Step 3. create a supabase account and create a new project. + +Step 4. copy .env.local.example into .env.local, and populate the keys. + +Step 5. run ``npm run dev`` + ## Feedback and issues Please file feedback and issues over on the [Supabase GitHub org](https://github.com/supabase/supabase/issues/new/choose). From 8a39688e282446477181fbdd36105100cae3c6ca Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Sun, 28 Aug 2022 12:18:57 -0500 Subject: [PATCH 2/2] Update examples/with-supabase-auth-realtime-db/README.md --- .../with-supabase-auth-realtime-db/README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/examples/with-supabase-auth-realtime-db/README.md b/examples/with-supabase-auth-realtime-db/README.md index 8de09b439d68..f8434f5b503a 100644 --- a/examples/with-supabase-auth-realtime-db/README.md +++ b/examples/with-supabase-auth-realtime-db/README.md @@ -8,17 +8,13 @@ The Vercel deployment will guide you through creating a Supabase account and pro [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-supabase-auth-realtime-db&project-name=nextjs-with-supabase-auth&repository-name=nextjs-with-supabase-auth&integration-ids=oac_jUduyjQgOyzev1fjrW83NYOv) -## Test locally +## Running Locally -Step 1. ``cd`` into this directory. - -Step 2. run ``npm install`` - -Step 3. create a supabase account and create a new project. - -Step 4. copy .env.local.example into .env.local, and populate the keys. - -Step 5. run ``npm run dev`` +1. `cd` into this directory +1. Run `npm install` to install dependencies +1. Create a Supabase account and new project +1. Copy `.env.local.example` into `.env.local` and add the project keys +1. Run `npm run dev` to start the local development server ## Feedback and issues