# API Gateway Configuration
PORT=4000

# Microservices URLs
AUTH_SERVICE_URL=http://127.0.0.1:4001
TASA_SERVICE_URL=http://127.0.0.1:4002
EXALMAR_SERVICE_URL=http://127.0.0.1:4003
AUSTRAL_SERVICE_URL=http://127.0.0.1:4004
CENTINELA_SERVICE_URL=http://127.0.0.1:4005
DIAMANTE_SERVICE_URL=http://127.0.0.1:4006

# Service Authentication Credentials (for API Gateway to authenticate with microservices)
TASA_SERVICE_USER=tasa_user
TASA_SERVICE_PASSWORD=tasa_secure_2024
EXALMAR_SERVICE_USER=exalmar_user
EXALMAR_SERVICE_PASSWORD=exalmar_secure_2024
AUSTRAL_SERVICE_USER=austral_user
AUSTRAL_SERVICE_PASSWORD=austral_secure_2024
CENTINELA_SERVICE_USER=centinela_user
CENTINELA_SERVICE_PASSWORD=centinela_secure_2024
DIAMANTE_SERVICE_USER=diamante_user
DIAMANTE_SERVICE_PASSWORD=diamante_secure_2024

# Logging
LOG_LEVEL=debug

# Client Authentication Credentials (specific per service)
TASA_CLIENT_USER=tasa_client
TASA_CLIENT_PASSWORD=tasa_client_2024
EXALMAR_CLIENT_USER=exalmar_client
EXALMAR_CLIENT_PASSWORD=exalmar_client_2024
AUSTRAL_CLIENT_USER=austral_client
AUSTRAL_CLIENT_PASSWORD=austral_client_2024
CENTINELA_CLIENT_USER=centinela_client
CENTINELA_CLIENT_PASSWORD=centinela_client_2024
DIAMANTE_CLIENT_USER=diamante_client
DIAMANTE_CLIENT_PASSWORD=diamante_client_2024