### Initialize Supabase Locally Source: https://github.com/13point5/open-artifacts/blob/main/README.md Initialize Supabase for local development. Ensure the Supabase CLI is installed. ```bash supabase init ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/13point5/open-artifacts/blob/main/README.md Install all necessary Node.js dependencies for the project using npm. ```bash npm install ``` -------------------------------- ### Run Development Server Source: https://github.com/13point5/open-artifacts/blob/main/README.md Start the Next.js development server to run the application locally. ```bash npm run dev ``` -------------------------------- ### Navigate to Project Directory Source: https://github.com/13point5/open-artifacts/blob/main/README.md Change the current directory to the cloned Open Artifacts project folder. ```bash cd open-artifacts ``` -------------------------------- ### Clone the Repository Source: https://github.com/13point5/open-artifacts/blob/main/README.md Clone the Open Artifacts project repository using Git. ```bash git clone https://github.com/13point5/open-artifacts.git ``` -------------------------------- ### Link Local Supabase to Remote Project Source: https://github.com/13point5/open-artifacts/blob/main/README.md Link your local Supabase instance to your remote Supabase project using the project reference. ```bash supabase link --project-ref ``` -------------------------------- ### Apply Supabase Database Migrations Source: https://github.com/13point5/open-artifacts/blob/main/README.md Push local database schema changes to your Supabase project. ```bash supabase db push ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.