38 lines
710 B
Plaintext
38 lines
710 B
Plaintext
# Test Environment Configuration
|
|
# Enable protocol servers for testing
|
|
|
|
# Database configuration
|
|
DB_HOST=calejo-postgres-test
|
|
DB_PORT=5432
|
|
DB_NAME=calejo_test
|
|
DB_USER=calejo
|
|
DB_PASSWORD=password
|
|
|
|
# Enable internal protocol servers for testing
|
|
OPCUA_ENABLED=true
|
|
MODBUS_ENABLED=true
|
|
|
|
# REST API configuration
|
|
REST_API_ENABLED=true
|
|
REST_API_HOST=0.0.0.0
|
|
REST_API_PORT=8081
|
|
|
|
# Health monitoring
|
|
HEALTH_MONITOR_PORT=9091
|
|
|
|
# Logging
|
|
LOG_LEVEL=DEBUG
|
|
LOG_FORMAT=json
|
|
ENVIRONMENT=test
|
|
|
|
# Security
|
|
API_KEY=test_api_key
|
|
JWT_SECRET_KEY=test_jwt_secret_key
|
|
|
|
# Auto-discovery
|
|
AUTO_DISCOVERY_ENABLED=true
|
|
AUTO_DISCOVERY_REFRESH_MINUTES=30
|
|
|
|
# Optimization
|
|
OPTIMIZATION_MONITORING_ENABLED=false
|
|
OPTIMIZATION_REFRESH_SECONDS=60 |