Files
Inboxintel/src/InboxIntel.Api/appsettings.json
T
cesnimda 2b19bddf7b
CI / backend (push) Successful in 52s
CI / frontend (push) Successful in 11s
Deploy Staging / deploy (push) Successful in 24s
Security / secrets (push) Successful in 4s
Security / dependencies (push) Successful in 52s
CI / backend (pull_request) Successful in 49s
CI / frontend (pull_request) Successful in 10s
Security / secrets (pull_request) Successful in 3s
Security / dependencies (pull_request) Successful in 55s
feat(security): audit batch C — data posture, retention, DP keys (#22)
2026-07-02 10:13:07 +02:00

78 lines
1.6 KiB
JSON

{
"ConnectionStrings": {
"Postgres": ""
},
"Database": {
"AutoMigrate": true
},
"DataProtection": {
"KeyPath": "/keys",
"CertificatePath": "",
"CertificatePassword": ""
},
"DataRetention": {
"PurgeTrashedAfterDays": 0,
"PurgeAllAfterDays": 0
},
"GoogleOAuth": {
"ClientId": "",
"ClientSecret": "",
"Scopes": [
"openid",
"email",
"profile",
"https://www.googleapis.com/auth/gmail.readonly",
"https://www.googleapis.com/auth/gmail.modify"
]
},
"App": {
"DevMode": false
},
"GmailSync": {
"PageSize": 500,
"MaxParallelism": 8,
"MaxRetries": 5,
"BackoffBaseMs": 500,
"DailySyncHourUtc": 3,
"MaxMessages": 0
},
"Ai": {
"Mode": "Disabled",
"OllamaBaseUrl": "http://localhost:11434",
"OllamaModel": "llama3.1",
"OpenAiApiKey": "",
"OpenAiModel": "gpt-4o-mini"
},
"Smtp": {
"Enabled": false,
"Host": "",
"Port": 587,
"UseSsl": true,
"User": "",
"Password": "",
"FromAddress": "",
"FromName": "InboxIntel"
},
"Digest": {
"FrequencyDays": 7,
"SendHourUtc": 8
},
"ForwardedHeaders": {
"ForwardLimit": 1,
"KnownNetworks": [ "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "127.0.0.0/8", "::1/128" ]
},
"Cors": {
"Origins": [ "http://localhost:5173" ]
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
}
},
"AllowedHosts": "*"
}