Files
FACULTATE-HEALTHCARE_MANAGER/backend/API/appsettings.json
T

44 lines
1.1 KiB
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"HealthcareManagerDatabase": "Host=34.39.24.11;Database=HealthcareManager;Username=postgres;Password=postgres;",
"MongoDBConnection": "mongodb+srv://andrei_cerbu:andrei@cluster0.v80skg6.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0"
},
"HealthcareManagerDatabase": {
"Name": "HealthcareManager",
"MedicalRecordCollectionName": "MedicalHistory",
"ChatCollectionName": "Chat",
"AppointmentsCollectionName": "Appointments"
},
"ApiKeySettings": {
"ApiKey": "testapikey"
},
"Jwt": {
"SecretKey": "HealthcareManagerJwtKey",
"Issuer": "HealthcareManager",
"Audience": "HealthCareManagerUsers",
"ExpirationTime": 1440
},
"SmtpSettings": {
"Host": "smtp-relay.brevo.com",
"Port": 587,
"From": "bot@healthcaremanager.com",
"EnableSSL": false,
"UserName": "andreimihneacerbu@gmail.com",
"Password": "zpK3w71LkNa0sGt6"
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:80"
}
}
}
}