34 lines
923 B
Bash
34 lines
923 B
Bash
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5555
|
|
DB_USER=facturacion_user
|
|
DB_PASSWORD=facturacion_pass
|
|
DB_NAME=facturacion_bd
|
|
|
|
# Kafka Configuration
|
|
KAFKA_BOOTSTRAP_SERVERS=localhost:9093
|
|
# KAFKA_BOOTSTRAP_SERVERS=10.0.0.128:9092
|
|
KAFKA_CONSUMER_GROUP_ID=facturacion-consumer
|
|
KAFKA_INPUT_TOPIC=FACTURACION
|
|
KAFKA_TOPIC_ESTADO=FACTURACION_ESTADO
|
|
KAFKA_TOPIC_ANULAR=FACTURACION_ANULAR
|
|
KAFKA_RESULT_TOPIC=FACTURACION_RESULTADOS
|
|
KAFKA_DLQ_TOPIC=FACTURACION_DLQ
|
|
|
|
# Server Configuration
|
|
SERVER_PORT=7778
|
|
|
|
# SOAP Service Configuration
|
|
SOAP_SERVICE_URL=https://pilotosiatservicios.impuestos.gob.bo/v2/ServicioFacturacionCompraVenta
|
|
# SOAP_SERVICE_URL=http://localhost:8088/mockServicioFacturacionSoapBinding
|
|
|
|
# Email Configuration
|
|
SMTP_HOST=mail.myapps.bo
|
|
SMTP_PORT=465
|
|
SMTP_USER=keycloaktest@myapps.bo
|
|
SMTP_PASS=%l12k*89f1w:
|
|
NOTIFY_EMAIL=alertas@miempresa.com
|
|
|
|
# Logging Configuration
|
|
LOG_DIR=./logs
|
|
LOG_FILENAME=consumer.log |