Local Setup

Prerequisites

  • Node.js 20+
  • Docker + Docker Compose
  • Flutter 3.6+ (for mobile development)
  • Python 3.11+ (for AI services development)
git clone https://github.com/EliaCoon/flow-platform.git
cd flow-platform
cp .env.example .env       # fill in values (see environment-variables.md)
docker-compose up -d

Services will be available at:

Running services individually

npm install
 
# Web only
npm run dev:web
 
# Backend only
npm run dev:backend
 
# AI services only
npm run dev:ai

Mobile

See Mobile Setup.