Installation Guide

Prerequisites

  • Node.js (14.x or higher)

  • npm or yarn

  • A Supabase account

  • A Resend account

Basic Setup

  1. Clone the repository.

  2. Install dependencies:

    npm install
    
  3. Create necessary environment variables (see the Configuration section).

  4. Run the development server:

    npm run dev
    

Environment Setup

Create a .env file with the following structure:

HERO_VIDEO_URL=<your-video-url>
RESEND_API_KEY=<your-api-key>
RESEND_AUDIENCE_ID=<your-audience-id>
SUPABASE_URL=<your-supabase-url>
SUPABASE_SERVICE_KEY=<your-service-key>

Note

Replace placeholder values with your actual configuration. Do not commit sensitive keys to version control.