### Run Notedown Development Server Source: https://github.com/techlism/notedown/blob/master/README.md Starts the development server for the Notedown application. ```bash npm run dev ``` -------------------------------- ### Install Node.js Dependencies Source: https://github.com/techlism/notedown/blob/master/README.md Installs the necessary Node.js dependencies for the Notedown project. ```bash npm install ``` -------------------------------- ### Clone Notedown Repository Source: https://github.com/techlism/notedown/blob/master/README.md Command to clone the Notedown project repository from GitHub. ```bash git clone https://github.com/yourusername/notedown.git cd notedown ``` -------------------------------- ### Create Notes Table Schema Source: https://github.com/techlism/notedown/blob/master/README.md Defines the SQL schema for the 'notes' table in Supabase, including fields for ID, user ID, title, content, encryption key, modification timestamp, and cover image URL. ```sql CREATE TABLE public.notes ( id uuid NOT NULL DEFAULT extensions.uuid_generate_v4(), user_id uuid NOT NULL, title text NOT NULL, content bytea NOT NULL, encryption_key text NOT NULL, last_modified timestamp with time zone NULL DEFAULT current_timestamp, cover_image_url text NULL, CONSTRAINT notes_pkey PRIMARY KEY (id), CONSTRAINT notes_user_id_fkey FOREIGN KEY (user_id) REFERENCES auth.users (id) ) TABLESPACE pg_default; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.