forked from VahidN/BlazorWasmDynamicPermissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
42 lines (42 loc) · 988 Bytes
/
appsettings.json
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
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Warning",
"System": "Information",
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"DefaultConnection": "Data Source=|DataDirectory|\\db.sqlite;Cache=Shared"
},
"BearerToken": {
"Key": "This is my shared key! change it later!",
"Issuer": "https://localhost:7030/",
"Audience": "Any",
"AccessTokenExpirationMinutes": 2,
"RefreshTokenExpirationMinutes": 60
},
"AdminUser": {
"Username": "Admin",
"DisplayName": "مدير سيستم",
"IsActive": true,
"Password": "1234"
},
"TestUsers": [
{
"Username": "User 1",
"DisplayName": "User 1",
"IsActive": true,
"Password": "5678"
},
{
"Username": "User 2",
"DisplayName": "User 2",
"IsActive": true,
"Password": "9012"
}
]
}