v0.3.0

Installation

Detailed installation instructions for FacilFlow.

System Requirements

Component Minimum Recommended
Node.js 18.x 20.x
Memory 4GB 8GB
Disk 1GB 5GB

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.

esc