casa-bot/src/CasaBot/CasaBotApp/appsettings.json

38 lines
996 B
JSON
Raw Normal View History

{
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information",
"Quartz": "Information",
2025-02-17 18:36:17 -03:00
"System.Net.Http.HttpClient": "Warning",
"DVRScanner": "Trace"
}
},
"Telegram":{
"BotToken": "__token__",
"SubscribedChatIds": []
},
"Shinobi": {
"URL": "http://localhost:8080",
"APIKey": "APIKEY",
"GroupId": "Group",
2025-02-19 12:54:09 -03:00
"MonitorId": "Monitor"
},
"AutoScan": {
"Enabled": true,
2025-02-20 11:42:17 -03:00
"RunDry": false,
"At": "07:00",
2025-02-19 12:54:09 -03:00
"FromDayBefore": false,
2025-02-20 11:42:17 -03:00
"From": "01:00",
"To": "05:00",
2025-02-19 12:54:09 -03:00
"MaxAmount": 0,
"MediaFolder": "./media/originals/",
"Scanner": {
"Exe": "./dvr-scanner/dvr-scan.exe",
"ConfigFile": "./dvr-scanner/dvr-scan.cfg",
2025-02-17 18:36:17 -03:00
"DetectionFolder": "./media/detections/",
2025-02-20 11:42:17 -03:00
"RunDry": false
}
}
}