Skip to content

Getting Started

Follow these instructions to set up the RealDeal project locally.

Prerequisites

  • Node.js (v18 or higher)
  • npm or yarn
  • A Supabase project (for database and auth)

Installation

  1. Clone the repository
    git clone https://github.com/YouFoundJK/RealEstateAnalyzerApp.git
    cd RealEstateAnalyzerApp
    
  2. Install dependencies
    npm install
    
  3. Environment Setup Create a .env.local file in the root directory:
    NEXT_PUBLIC_SUPABASE_URL=your_supabase_project_url
    NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
    
  4. Database Setup Run the SQL scripts provided in lib/database_schema.sql in your Supabase SQL Editor to set up the tables and security policies.
  5. Run the development server
    npm run dev
    
    Open http://localhost:3000 with your browser to see the result.