Backend/e-suite.API/eSuite.API/appsettings.Development.json
2026-01-20 21:50:10 +00:00

45 lines
1.0 KiB
JSON

{
"baseUrl": "http://localhost:3001",
"applicationName": "e-suite",
"https_port": 7066,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"database": {
"server": "(local)",
"databaseName": "esuite",
"encrypt": true,
"trustServerCertificate": true,
"username": "esuiteApplicationUser",
"password": "Plz change me on live, thank you"
},
"JwtConfig": {
"secret": "Z8p9YKvYnwm62sPLJVdvp3M7bQ5l0UqRGwz95ZqL",
"expirationInMinutes": 15,
"audience": "localhost",
"issuer": "localhost"
},
"Smtp": {
"Server": "127.0.0.1",
"Port": 25,
"FromAddress": "esuite@sun-strategy.com",
"FromDisplayName": "eSuite MailService",
"EmailTimeoutHours": 48
},
"RabbitMQ": {
"hostname": "localhost"
},
"AuthConfig": {
"pepper": "ThisIsNotAGoodPepper"
},
"Sentinel": {
"MaxLoginAttempts": 5,
"LoginAttemptTimeoutMinutes": 60
},
"twoFactorAuthentication": {
"keySize": 20
}
}