Files
LaDOSE/LaDOSE.Src/LaDOSE.Api/appsettings.json

28 lines
613 B
JSON
Raw Permalink Normal View History

2018-10-04 21:13:32 +02:00
{
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
2023-07-12 05:06:18 +02:00
"ConnectionStrings": {
"DbContext":"Host=descartes.local;Username=tom;Password=tom;Database=ladoseapi"
},
2018-10-06 02:55:29 +02:00
"CertificateSettings": {
"fileName": "localhost.pfx",
"password": "YourSecurePassword"
},
2018-10-06 02:55:29 +02:00
"MySql": {
2023-07-12 05:06:18 +02:00
"Server": "localhost",
"Database": "ladoseapi",
"User": "dev",
"Password": "dev"
2018-10-06 02:55:29 +02:00
},
"ApiKey": {
2023-07-12 05:06:18 +02:00
"ChallongeApiKey": "Challonge ApiKey",
"SmashApiKey": "Smash"
},
2023-07-12 05:06:18 +02:00
"AllowedHosts": "0.0.0.0",
"Port": 5000,
"JWTTokenSecret": "here goes the custom Secret key for authnetication"
2018-10-04 21:13:32 +02:00
}