23 lines
530 B
Bash
23 lines
530 B
Bash
# Environment variables for Mulita
|
|
|
|
# Photo directories to mount (can be multiple paths separated by colon)
|
|
# Example: /path/to/photos1:/path/to/photos2
|
|
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 |