Skip to content

Commit

Permalink
refactor(BackendPatient): remove unused connection strings in appsett…
Browse files Browse the repository at this point in the history
…ings.json
  • Loading branch information
EveCrystali committed Nov 20, 2024
1 parent f6090e6 commit d465e44
Showing 1 changed file with 25 additions and 28 deletions.
53 changes: 25 additions & 28 deletions BackendPatient/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
{
"ConnectionStrings": {
"DefaultConnection": "Server=RTX4070Ti\\SQLEXPRESS;Database=PatientDb;Trusted_Connection=True;MultipleActiveResultSets=true;TrustServerCertificate=True",
"DockerInternal2": "Server=127.0.0.1\\SQLEXPRESS;Database=PatientDb;User Id=backend_user;Password=Str0ng!Passw0rd#2024-renew;MultipleActiveResultSets=true;TrustServerCertificate=True;",
"DockerInternal": "",
"DockerConnection": "Server=localhost;Database=BackendPatientDb;User Id=sa;Password=Str0ng!Passw0rd#2024-renew;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"JwtSettings": {
"Issuer": "http://auth:7201",
"Audience": [
"http://backenddiabetesriskprediction:7204",
"http://elasticsearch:9200",
"http://backendnote:7202",
"http://auth:7201",
"http://backendpatient:7200",
"http://frontend:7000",
"http://apigateway:5000"
],
"TokenLifetimeMinutes": 15,
"RefreshTokenLifetimeDays": 7
}
{
"ConnectionStrings": {
"DockerInternal": ""
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"JwtSettings": {
"Issuer": "http://auth:7201",
"Audience": [
"http://backenddiabetesriskprediction:7204",
"http://elasticsearch:9200",
"http://backendnote:7202",
"http://auth:7201",
"http://backendpatient:7200",
"http://frontend:7000",
"http://apigateway:5000"
],
"TokenLifetimeMinutes": 15,
"RefreshTokenLifetimeDays": 7
}
}

0 comments on commit d465e44

Please sign in to comment.