.env.example is improved, comments added. docker-compose-prod.yaml is replaced with docker-compose.yaml, development version is docker-compose.override.yaml now
This commit is contained in:
+18
-3
@@ -1,11 +1,26 @@
|
||||
# ------------------------------------------------------------------------------
|
||||
# Production Environment Variables
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
# Backend
|
||||
DEBUG=0
|
||||
MAX_UPLOAD_SIZE_MB=500
|
||||
TEMP_DIR=/tmp/audio_splitter_web
|
||||
CLEANUP_AFTER_SECONDS=3600
|
||||
BACKEND_DATA_VOLUME=/tmp/audio_splitter_web
|
||||
|
||||
# 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
|
||||
FRONTEND_PORT=5173
|
||||
|
||||
Reference in New Issue
Block a user