27 lines
957 B
Bash
27 lines
957 B
Bash
# ------------------------------------------------------------------------------
|
|
# Production Environment Variables
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Backend
|
|
DEBUG=0
|
|
MAX_UPLOAD_SIZE_MB=500
|
|
CLEANUP_AFTER_SECONDS=3600
|
|
|
|
# Backend data directory (bind mount)
|
|
# This directory will store all temporary files during splitting.
|
|
# It can get large (audio files), so place it on a partition with enough space.
|
|
BACKEND_DATA_DIR=/var/lib/audio_splitter_data
|
|
|
|
# Ports
|
|
BACKEND_PORT=8000
|
|
FRONTEND_PORT=5173
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Development Overrides (docker-compose.override.yaml)
|
|
# ------------------------------------------------------------------------------
|
|
# These are only used when docker-compose.override.yaml is present.
|
|
# They override the production settings for local development.
|
|
|
|
# Frontend (development)
|
|
VITE_BACKEND_URL=http://localhost:8000
|