chore: init project

This commit is contained in:
cesnimda
2026-06-30 15:53:32 +02:00
commit f43ef5f945
94 changed files with 4405 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
{
"ConnectionStrings": {
"Postgres": "Host=localhost;Port=5432;Database=inboxintel;Username=inboxintel;Password=inboxintel"
},
"Database": {
"AutoMigrate": true
},
"DataProtection": {
"KeyPath": "/keys"
},
"GoogleOAuth": {
"ClientId": "",
"ClientSecret": "",
"Scopes": [
"openid",
"email",
"profile",
"https://www.googleapis.com/auth/gmail.readonly",
"https://www.googleapis.com/auth/gmail.modify"
]
},
"GmailSync": {
"PageSize": 100,
"MaxParallelism": 4,
"MaxRetries": 5,
"BackoffBaseMs": 500,
"DailySyncHourUtc": 3
},
"Ai": {
"Mode": "Disabled",
"OllamaBaseUrl": "http://localhost:11434",
"OllamaModel": "llama3.1",
"OpenAiApiKey": "",
"OpenAiModel": "gpt-4o-mini"
},
"Cors": {
"Origins": [ "http://localhost:5173" ]
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
}
},
"AllowedHosts": "*"
}