-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
70 lines (64 loc) · 1.5 KB
/
appsettings.json
File metadata and controls
70 lines (64 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Admins": [
{
"Name": "Admin",
"UserName": "admin",
"Email": "admin@joo.com",
"Password": "asdASD123!@#"
},
{
"Name": "Yousef Ahmed",
"UserName": "Yousef",
"Email": "yuossefbakier@gmail.com",
"Password": "Yousef&2004"
},
{
"Name": "Gamal Moemen",
"UserName": "Gamal",
"Email": "gamalelbatawy@gmail.com",
"Password": "Gamal_21"
},
{
"Name": "Mahmoud Abdulmawlaa",
"UserName": "b3dsh",
"Email": "m.elbaadishy@gmail.com",
"Password": "b3dsh@#$"
},
{
"Name": "Reem Fadaly",
"UserName": "reem",
"Email": "reemfadaly.23@gmail.com",
"Password": "reem.23"
}
],
"ConnectionStrings": {
"SQL-Server": "Server=.;Database=HealthCare;Trusted_Connection=True;TrustServerCertificate=True;"
},
"WorkingHours": {
"Morning": "8:00 AM - 2:00 PM",
"Evening": "2:00 PM - 8:00 PM",
"Night": "8:00 PM - 2:00 AM"
},
"SlotDurationInMinutes": 60,
"Upload-Path": "Uploads/",
"SmtpSettings": {
"Server": "smtp.gmail.com",
"Port": 587,
"EnableSsl": true,
"Username": "healthcaresystem878@gmail.com",
"Password": "insyvpzshykktfwy"
},
"JWT": {
"Key": "wCBU6bs+NKA4ynCgDNlA7r880m07P88sOp9Kf2M3y4I=",
"Issuer": "SecureApi",
"Audience": "SecureApiUser",
"DurationInMinutes": 60
}
}