Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# .env.example β€” RAINGOD ComfyUI Integration
# Copy to .env and fill in your values.
# This file is safe to commit β€” .env is excluded by .gitignore.

# ============================================================
# ComfyUI connection
# ============================================================
COMFYUI_HOST=127.0.0.1
COMFYUI_PORT=8188

# ============================================================
# RAINGOD Backend
# ============================================================
BACKEND_HOST=0.0.0.0
BACKEND_PORT=8000
BACKEND_WORKERS=1

# ============================================================
# CORS β€” comma-separated list of allowed frontend origins
# Restrict this before deploying publicly.
# ============================================================
ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000

# ============================================================
# LoRA directory (default: ./loras relative to project root)
# ============================================================
# RAINGOD_LORA_DIR=/path/to/ComfyUI/models/loras

# ============================================================
# Checkpoint override (default: v1-5-pruned-emaonly.safetensors)
# ============================================================
# RAINGOD_CHECKPOINT=dreamshaper_8.safetensors

# ============================================================
# Logging
# ============================================================
# LOG_LEVEL=INFO
Loading
Loading