Files
jobtrackingapp/JobTrackerApi/appsettings.json
T
2026-08-31 22:23:34 +02:00

44 lines
942 B
JSON

{
"HttpsRedirection": {
"Enabled": false,
"Hsts": false
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Workers": {
"RulesEnabled": false,
"FollowUpRemindersEnabled": false,
"SavedJobSearchAlertsEnabled": true,
"DailyExportEnabled": false,
"JobEnrichmentEnabled": false,
"AiOperationsEnabled": false
},
"JobDiscovery": {
"SavedSearchIntervalHours": 6
},
"Ai": {
"ExternalProcessingEnabled": false,
"ExternalProvider": "ollama",
"RoutingMode": "local_first"
},
"AccountLifecycle": {
"DeletionEnabled": false
},
"AiQueue": {
"WorkerConcurrency": 1,
"GlobalCapacity": 100,
"PerUserCapacity": 10,
"DeadlineMinutes": 15,
"MaxAttempts": 3,
"LeaseSeconds": 120,
"HeartbeatSeconds": 20,
"OperationTimeoutSeconds": 300,
"IdleDelayMs": 1000
}
}