Skip to content

Getting Started

Ross Nicholson edited this page Jun 28, 2025 · 1 revision

Getting Started

Prerequisites

  • Node.js 18+
  • PostgreSQL 14+
  • Redis

Installation

  1. Clone the repository

    git clone https://github.com/RossNicholson/HelpMe.git
    cd HelpMe
  2. Install dependencies

    cd backend && npm install
    cd ../frontend && npm install
  3. Environment Setup

    cp backend/env.example backend/.env
    cp frontend/env.example frontend/.env
  4. Database Setup

    cd backend
    npm run migrate
    npm run seed
  5. Start Development Servers

    npm run dev   # backend
    npm start     # frontend
  6. Access the Application

Clone this wiki locally