20 lines
528 B
Bash
20 lines
528 B
Bash
# MongoDB settings
|
|
MONGO_URL = "mongodb://test:test@localhost:27020/"
|
|
MONGO_DB_NAME = "admin"
|
|
|
|
# Kafka settings
|
|
KAFKA_BROKERS="localhost:9092"
|
|
KAFKA_TOPIC_TARIFF="test-topic"
|
|
|
|
# SMTP settings
|
|
SMTP_API_URL="https://api.smtp.bz/v1/smtp/send"
|
|
SMTP_HOST="connect.mailclient.bz"
|
|
SMTP_PORT="587"
|
|
SMTP_UNAME="kotilion.95@gmail.com"
|
|
SMTP_PASS="vWwbCSg4bf0p"
|
|
SMTP_API_KEY="P0YsjUB137upXrr1NiJefHmXVKW1hmBWlpev"
|
|
SMTP_SENDER="noreply@mailing.pena.digital"
|
|
|
|
# URL settings
|
|
CustomerURL = "http://localhost:8080"
|
|
QuizRPCURL = "localhost:9000" |