Files
fiscalos/src/FiscalOS.API/appsettings.Example.json
T

32 lines
688 B
JSON
Raw Normal View History

2026-02-01 06:12:25 -06:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"AppDbContextOptions": {
"DatabaseFilePath": "DatabaseFilePath"
},
"JwtOptions": {
"Audience": "Audience",
"Issuer": "Issuer",
"Secret": "Secret",
"ExpiryInMinutes": "ExpiryInMinutes"
2026-02-06 06:47:23 -06:00
},
"FileKeyRingOptions": {
"KeysDirectoryPath": "KeysDirectoryPath",
"PrimaryKeyId": "PrimaryKeyId"
},
2026-02-12 20:45:56 -06:00
"PlaidClientOptions": {
2026-02-06 06:47:23 -06:00
"ClientId": "ClientId",
"Secret": "Secret",
"Webhook": "Webhook"
},
"SeqOptions": {
"ServerUrl": "ServerUrl",
"ApiKeyHeader": "ApiKeyHeader",
"ApiKey": "ApiKey"
2026-02-01 06:12:25 -06:00
}
}