Installation

Running the landing page locally.

Created: 1/11/2026

Installation

To run the Landing Page locally:

Prerequisites

  • Node.js (v20+)
  • pnpm (v10.4.1+)

Steps

  1. Install dependencies from root:

    # From the project root
    pnpm install
    
  2. Environment Setup: Navigate to the web app and copy the example env file:

    cd apps/web
    cp .env.example .env.local
    

    Fill in your RESEND_API_KEY in the .env.local file for email functionality.

  3. Run Development Server: From the root directory, run:

    pnpm dev:web
    

    Or to run only the landing page:

    pnpm dev --filter=web
    
  4. View Site: Open http://localhost:3000 in your browser.