Files
BimAI/BimAI.API/appsettings.Production.json
Michał Zieliński 140ece8080
Some checks failed
Build Docker Images / build-and-push (push) Failing after 1m30s
WIP: build production images
2025-10-12 20:17:33 +02:00

38 lines
833 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "#{db-connection-string}#",
"HangfireConnection": "#{hangfire-connection-string}#"
},
"E5_CRM": {
"ApiKey": "#{e5-crm-api-key}#"
},
"GoogleAuth": {
"ClientId": "#{google-auth-client-id}#"
},
"JwtSettings": {
"SecretKey": "#{jwt-secret-key}#",
"Issuer": "#{jwt-issuer}#",
"Audience": "#{jwt-audience}#",
"ExpiryDays": 7
},
"Hangfire": {
"ServerName": "#{hangfire-server-name}#",
"WorkerCount": 5,
"DashboardPath": "/hangfire"
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:7142"
}
}
}
}