23 lines
423 B
TOML
23 lines
423 B
TOML
environment = "test"
|
|
|
|
[database]
|
|
mongodb = "mongodb://localhost?directConnection=true&replicaSet=rs0"
|
|
redis = "redis://localhost/"
|
|
|
|
[rabbit]
|
|
host = "127.0.0.1"
|
|
port = 5672
|
|
username = "rabbituser"
|
|
password = "rabbitpass"
|
|
|
|
[features]
|
|
webhooks_enabled = true
|
|
|
|
[api.smtp]
|
|
host = "localhost"
|
|
username = "smtp"
|
|
password = "smtp"
|
|
from_address = "development@stoat.chat"
|
|
reply_to = "support@stoat.chat"
|
|
port = 14025
|
|
use_tls = false |