Quick Start

Prerequisites

  • Node.js 18+ (LTS recommended)

  • Yarn 1.22+ or npm 8+

  • Git

Installation

  1. Clone the repository

    git clone https://github.com/your-username/website.git
    cd website
    
  2. Install dependencies

    # Using yarn (recommended)
    yarn install
    
  3. Set up environment variables

    vim .env
    or
    cp .env.example .env
    # Edit .env with your configuration
    
  4. Start the development server

    yarn dev
    

    Your app will be available at http://localhost:3000