21 lines
673 B
Plaintext
21 lines
673 B
Plaintext
# Environment variables for LOCAL DEVELOPMENT (docker-compose.dev.yml)
|
|
# Copy this file to ../.env and fill in the values
|
|
|
|
# Application Settings
|
|
# Example: LOG_LEVEL=debug
|
|
LOG_LEVEL=info
|
|
LOG_ENCODING=console # Use 'console' for readable logs in dev, 'json' for structured logging
|
|
# Add other application-specific environment variables here
|
|
# API_KEY=your_dev_api_key
|
|
|
|
# Database Settings (for Postgres service in docker-compose.dev.yml)
|
|
DB_HOST=db # Service name in docker-compose
|
|
DB_PORT=5432
|
|
DB_USER=devuser
|
|
DB_PASSWORD=devpassword
|
|
DB_NAME=matching_dev
|
|
|
|
# Add other service credentials/configs if needed (e.g., Redis, external APIs)
|
|
# REDIS_HOST=redis
|
|
# REDIS_PORT=6379
|