# ── Public URL ──────────────────────────────────────────────────────────────── DOMAIN=plane.whitney.rip # ── Plane image tag ─────────────────────────────────────────────────────────── # Pin to a release (e.g. v1.3.0) or use `stable` to follow latest. # See: https://github.com/makeplane/plane/releases APP_RELEASE=v1.3.0 # ── Django / backend ────────────────────────────────────────────────────────── # Generate a fresh 50-char random string, e.g.: # openssl rand -hex 25 SECRET_KEY=replace-me-with-a-long-random-string # Gunicorn workers for the API container GUNICORN_WORKERS=2 # Max upload size in bytes (default 5 MiB) FILE_SIZE_LIMIT=5242880 # ── Postgres ────────────────────────────────────────────────────────────────── POSTGRES_DB=plane POSTGRES_USER=plane POSTGRES_PASSWORD=change-me # ── RabbitMQ ────────────────────────────────────────────────────────────────── RABBITMQ_USER=plane RABBITMQ_PASSWORD=change-me # ── MinIO (object storage for uploads) ──────────────────────────────────────── MINIO_ROOT_USER=change-me-access-key MINIO_ROOT_PASSWORD=change-me-secret-key MINIO_BUCKET_NAME=uploads