-
Notifications
You must be signed in to change notification settings - Fork 2
Getting Started
Ross Nicholson edited this page Jun 28, 2025
·
1 revision
- Node.js 18+
- PostgreSQL 14+
- Redis
-
Clone the repository
git clone https://github.com/RossNicholson/HelpMe.git cd HelpMe -
Install dependencies
cd backend && npm install cd ../frontend && npm install
-
Environment Setup
cp backend/env.example backend/.env cp frontend/env.example frontend/.env
-
Database Setup
cd backend npm run migrate npm run seed -
Start Development Servers
npm run dev # backend npm start # frontend
-
Access the Application
- Frontend: http://localhost:3000
- Backend API: http://localhost:8000
- API Docs: http://localhost:8000/api-docs