Skip to main content

Installation

Fluidify Regen is a self-hosted application. It runs as a single Docker container alongside PostgreSQL and Redis. No cloud account required.

Prerequisites

  • Docker and Docker Compose
  • A server or local machine with at least 1 GB RAM
  • Ports 8080 (or your chosen PORT) accessible

Quick start

Open http://localhost:8080 — the app is running. On first load you will be prompted to create your admin account.

What make start does

make start runs docker-compose up --build -d. It:
  1. Builds the production Docker image (React frontend embedded in the Go binary)
  2. Starts PostgreSQL and Redis
  3. Runs all database migrations automatically
  4. Seeds the AI agents and sample data
  5. Starts the application on port 8080
Everything is in a single binary — no separate frontend container, no NGINX, no reverse proxy needed to get started.

Useful commands

Verifying the install

Next steps