platform-codebase/features/image-generator/backend-api/.env.example

26 lines
552 B
Text
Executable file

# Image Generator Service Configuration
# Service
PORT=3010
NODE_ENV=development
# Storage
STORAGE_PATH=/mnt/bigdisk/_/lilith-platform/images
PUBLIC_IMAGE_URL=/api/images
# ML Image Generation Service (port 8002 per ports.yaml)
ML_IMAGE_SERVICE_URL=http://localhost:8002
# Image Processing Service (port 8004 per ports.yaml)
# Sharp-based derivative generation
IMAGE_PROCESSING_URL=http://localhost:8004
# Database
DB_HOST=localhost
DB_PORT=25432
DB_NAME=image_generator
DB_USER=lilith
DB_PASSWORD=lilith
# CORS
CORS_ORIGIN=http://localhost:5173