Files
nssz-contact-bot/appsettings.json
T

34 lines
720 B
JSON

{
"Paths": {
"ContactsJsonPath": "http://contacts.nssz.local/data/contacts.json",
"PersistentContactsJsonPath": "PersistentContacts.json",
"PhotoBasePath": "photos"
},
"Telegram": {
"BotToken": "8155021946:AAGbfJnLa0sTWxqFB9yjbXhbTedBw4wvcQE"
},
"Redis": {
"Configuration": "contacts.nssz.local:6379",
"User": "default",
"Password": ""
},
"Serilog": {
"Using": [
"Serilog.Sinks.Console",
"Serilog.Sinks.File"
],
"MinimumLevel": "Debug",
"WriteTo": [
{
"Name": "Console"
},
{
"Name": "File",
"Args": {
"path": "nsszcontactbot.log",
"rollingInterval": "Day"
}
}
]
}
}