-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathappsettings.json
More file actions
33 lines (33 loc) · 1.06 KB
/
appsettings.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"ConnectionStrings": {
"DefaultConnectionForWindows": "Server=(localdb)\\mssqllocaldb;Database=NotificationsServiceDB;Trusted_Connection=True;TrustServerCertificate=true;MultipleActiveResultSets=True",
"DefaultConnectionForLinux": "Server=localhost,1433;Database=NotificationsServiceDB;User ID=SA;Password=password_1234;TrustServerCertificate=True;"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"EventBus": {
"EventBusHostName": "localhost",
"EventBusUserName": "guest",
"EventBusPassword": "guest",
"EventBusVirtualHost": "/",
"EventBusQueueName": "NotificationService",
"EventBusRetryCount": "5"
},
"Services": {
"Auth": "http://localhost:5001",
"Courses": "http://localhost:5002",
"Notifications": "http://localhost:5006",
"Solutions": "http://localhost:5007",
"Content": "http://localhost:5008"
},
"Notification": {
"Mail": "testhwproj@gmail.com",
"ConnectSite": "smtp.gmail.com",
"Password": "HwProj-2.0.1",
"Url": "http://localhost:3000"
}
}