Skip to main content

Documentation Index

Fetch the complete documentation index at: https://fleet.aayu.sh/llms.txt

Use this file to discover all available pages before exploring further.

Fleet is designed to work with zero configuration, but the following environment variables are available for customization.

Variables

Example .env

PORT=3000
NODE_ENV=production
ROOM_TTL_MINUTES=30

Docker Compose

Pass environment variables in docker-compose.yml:
services:
  fleet:
    build: .
    ports:
      - "3000:3000"
    environment:
      - NODE_ENV=production
      - PORT=3000
      - ROOM_TTL_MINUTES=30