Files
parr_api/PARR.EsppTemplateSyncWorker/appsettings.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2023-08-25 15:32:06 +10:00
{
"ConnectionStrings": {
"DefaultConnection": "Server=10.99.253.184;Database=parr;User Id=app_parr; Password=PosdfkhT&)%sdfligL&%5546;"
},
2023-08-25 15:32:06 +10:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Debug"
}
},
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "log/log-.txt",
"rollingInterval": "Day"
}
}
]
},
"StorageSettings": {
"StoragePath": "Data",
"EsppTemplates": {
"AllowedExtensions": [ ".csv" ],
"MaxFileSizeMb": 100
}
},
"GlobalSettings": {
2023-08-31 12:04:05 +10:00
"MqSettings": {
"HostName": "parr_rabbit",
"QueueName": "parr-espp-templates",
"User": "espp_templates_reader",
2023-09-05 15:42:07 +10:00
"Password": "P@ssReaderPtk202!"
2023-08-31 12:04:05 +10:00
},
"StorageSettings": {
"CheckIntervalSeconds": 30
},
2023-09-21 13:41:55 +10:00
"IgnoreTemplateFields": [ "Id", "Status", "Name", "DateCreated", "DateModified", "StatusCode" ],
"ParsingSeparator": "<|>"
2023-08-25 15:32:06 +10:00
}
}