# Basic application settings
APP_NAME=TrueStorage
APP_VERSION=1.0.0

# Development mode settings
DEV_DB_URL=postgresql://dev-db:5432/dev_db
DEV_API_KEY=dev-key-123
DEV_DEBUG=true

# Test mode settings
TEST_DB_URL=postgresql://test-db:5432/test_db
TEST_API_KEY=test-key-456
TEST_DEBUG=true

# Production mode settings
PROD_DB_URL=postgresql://prod-db:5432/prod_db
PROD_API_KEY=prod-key-789
PROD_DEBUG=false

# Common database settings
DB_MAX_CONNECTIONS=100
DB_TIMEOUT=30
DB_POOL_SIZE=10

# Security settings (these will be marked as secrets)
JWT_SECRET=your-jwt-secret-key
ENCRYPTION_KEY=your-encryption-key
API_SECRET=your-api-secret
