Skip to main content

Installation

Detailed installation instructions for FacilFlow.

System Requirements

ComponentMinimumRecommended
Node.js18.x20.x
Memory4GB8GB
Disk1GB5GB

Development Setup

1. Clone Repository

git clone https://github.com/facilisai/facilflow.git
cd facilflow

2. Install Dependencies

# Frontend
npm install

# Backend
cd backend && npm install

3. Configure Environment

# Frontend
cp .env.example .env

# Backend
cp backend/.env.example backend/.env

4. Start Services

# Frontend (port 3001)
npm run dev

# Backend (port 3002)
cd backend && npm run dev

Production Deployment

See the Configuration Guide for production settings.