-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
37 lines (30 loc) · 889 Bytes
/
appsettings.json
File metadata and controls
37 lines (30 loc) · 889 Bytes
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
{
"ConnectionStrings": { "DefaultConnection": "server=LAPTOP-C6680A7T\\SQLEXPRESS;database=LibraryDatabase;Integrated Security=true;" },
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Jwt": {
"Key": "D8q7zr3WVmjUlXLtWPg8",
"Issuer": "http://localhost:43744/",
"Audience": "http://localhost:43744/"
},
"Encryption": {
"Key": "mySecretKey"
},
"Twilio": {
"AccountSid": "AC6832a9089b565f996c49d45e34535b65",
"AuthToken": "fbf9a0052e285c4ead69298f0bce680b",
"PhoneNumber": "+19146183382"
},
"CacheSettings": {
"BorrowedBooksCacheKey": "BorrowedBooks",
"RetriveAllBookCacheKey": "all-books-cache-key",
"AllBooksAvailableForBorrowCacheKey": "allthebooksavailable",
"CacheDurationMinutes": 10,
"SlidingExpirationMinutes": 3
}
}