22 lines
595 B
Plaintext
22 lines
595 B
Plaintext
# Calejo Control Adapter - Environment Configuration
|
|
# Copy this file to .env and update with your actual values
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=calejo_control
|
|
DB_USER=calejo_user
|
|
DB_PASSWORD=your_secure_db_password_here
|
|
|
|
# Prometheus Authentication
|
|
PROMETHEUS_USERNAME=prometheus_user
|
|
PROMETHEUS_PASSWORD=your_secure_prometheus_password_here
|
|
|
|
# Application Security
|
|
JWT_SECRET_KEY=your_secure_jwt_secret_here
|
|
API_KEY=your_secure_api_key_here
|
|
|
|
# Monitoring Configuration
|
|
GRAFANA_ADMIN_PASSWORD=admin
|
|
|
|
# Note: Never commit the actual .env file to version control! |