16 lines
460 B
Bash
16 lines
460 B
Bash
# MongoDB settings
|
|
MONGO_URL = "mongodb://test:test@localhost:27020/"
|
|
MONGO_DB_NAME = "admin"
|
|
|
|
# Kafka settings
|
|
KAFKA_BROKERS="localhost:9092"
|
|
KAFKA_TOPIC_MAIL_NOTIFIER="test-topic"
|
|
|
|
# SMTP settings
|
|
API_URL="https://api.smtp.bz/v1/smtp/send"
|
|
MAIL_API_KEY="P0YsjUB137upXrr1NiJefHmXVKW1hmBWlpev"
|
|
MAIL_SENDER="noreply@mailing.pena.digital"
|
|
|
|
# URL settings
|
|
CUSTOMER_MICROSERVICE_GRPC_URL = "http://localhost:8080"
|
|
QUIZ_CORE_MICROSERVICE_GRPC_URL = "localhost:9000" |