# Environment variables for Mulita
#
# Set PHOTO_DIRS to the HOST path of your photo library. The compose file
# mounts this at /photos inside the container, and on first boot Mulita
# auto-creates a source root pointing at /photos so your library is
# scanned with zero further configuration.
#
# Examples:
#   macOS / Linux:    PHOTO_DIRS=/Users/you/Pictures
#   Network share:    PHOTO_DIRS=/mnt/nas/photos
#   Windows (WSL):    PHOTO_DIRS=/mnt/c/Users/you/Pictures
PHOTO_DIRS=./photos

# Redis configuration
REDIS_URL=redis://localhost:6379

# Database URL
DATABASE_URL=sqlite+aiosqlite:///data/db/mulita.db

# Celery configuration
CELERY_BROKER_URL=redis://localhost:6379
CELERY_RESULT_BACKEND=redis://localhost:6379
CELERYD_CONCURRENCY=4

# API settings
API_HOST=0.0.0.0
API_PORT=8000

# Frontend settings
VITE_API_URL=http://localhost:8000