### Run Onyx Development Server Source: https://github.com/rmourey26/onyx/blob/main/README.md Commands to install dependencies and start the development server for the Onyx application using various Node.js package managers. This allows developers to run and test the application locally before deployment. ```bash npm i && npm run dev # or yarn i && yarn run dev # or pnpm i && pnpm dev # or bun i && bun dev ``` -------------------------------- ### Configure Supabase Environment Variables Source: https://github.com/rmourey26/onyx/blob/main/README.md Instructions for setting up the necessary Supabase environment variables in a .env.local file for the Onyx project, including API keys and project URLs. These variables are crucial for connecting the application to your Supabase backend and ensuring proper authentication and data access. ```dotenv NEXT_PUBLIC_SUPABASE_ANON_KEY="Your supabase anon key" SUPABASE_JWT_SECRET="Your supabase JWT secret" NEXT_PUBLIC_SUPABASE_URL="Your supabase project URL" SUPABASE_SERVIC_ROLE_KEY="Your supabase service role key" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.