LibreTunes/.env.example
Carter Bertolini b222b7911f
All checks were successful
Push Workflows / docs (push) Successful in 2m43s
Push Workflows / test (push) Successful in 5m24s
Push Workflows / leptos-test (push) Successful in 7m12s
Push Workflows / build (push) Successful in 7m37s
Push Workflows / docker-build (push) Successful in 13m56s
Add example environment variables and update docker-compose
2024-10-11 16:53:08 -04:00

21 lines
614 B
Plaintext

# Example environment variable file
# Copy this to .env or manually set the environment variables
# Redis URL -- Used for storing session data
REDIS_URL=redis://localhost:6379
# PostgreSQL URL -- Used for storing data
# Option 1: Specify the URL directly
DATABASE_URL=postgresql://libretunes:password@localhost:5432/libretunes
# Option 2: Specify the individual components
# Must specify at least POSTGRES_HOST
# POSTGRES_USER=libretunes
# POSTGRES_PASSWORD=password
# POSTGRES_HOST=localhost
# POSTGRES_PORT=5432
# POSTGRES_DB=libretunes
LIBRETUNES_AUDIO_PATH=assets/audio
LIBRETUNES_IMAGE_PATH=assets/images