A simple CRUD app.
- Clone this repository
git clone https://github.com/khianvictorycalderon/Nextjs-Supabase-ToDo-List-App.git - Go to your supabase project.
- Run this SQL query in your supabase
sql editorproject:
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
CREATE TABLE IF NOT EXISTS tasks(
task_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
task_name TEXT NOT NULL,
status TEXT NOT NULL DEFAULT 'pending'
);- Create a
.env.localfile and paste the following:
SUPABASE_URL=""
SUPABASE_ANON_KEY=""- Replace the empty string with your actual supabase url and anon key.
- Run
npm install - Run
npm run dev
The following is a list of installed dependencies and configuration settings used in this project.
You don’t need to install anything manually, as all dependencies are already managed through package.json.
This section is provided for reference only, to give you insight into how the project was set up.
npm install axiosnpm install @supabase/supabase-js
