Install the dependencies for this project by running the following command from this repository root directory in your terminal
pnpm install
URL
and anon
key from your Settings > API section.env.example
file in this project and create a new .env
file from itPUBLIC_SUPABASE_URL
with the URL
from step 2 and PUBLIC_SUPABASE_ANON_KEY
with anon
key from step 2SQL
below and paste it inside of the SQL Editor sectionDROP TABLE IF EXISTS "public"."test";
-- Table Definition
CREATE TABLE "public"."test" (
"id" int8 NOT NULL,
"created_at" timestamptz DEFAULT now(),
PRIMARY KEY ("id")
);
pnpm build:sveltekit
pnpm dev --filter=@example/sveltekit-email-password -- --open