-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json.example
More file actions
58 lines (58 loc) · 1.29 KB
/
appsettings.Development.json.example
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:5002"
},
"Https": {
"Url": "https://0.0.0.0:5003"
}
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning",
"MongoDB": "Warning"
}
}
},
"Mongo": {
"ConnectionString": "mongodb://localhost:27017",
"Database": "safepulse"
},
"Api": {
"AdminKey": "dev-admin-key"
},
"App": {
"PublicBaseUrl": "http://localhost:5002"
},
"Auth": {
"Issuer": "SafePulse",
"Audience": "SafePulse.Web",
"SigningKey": "dev-only-safe-pulse-signing-key-change-for-production-12345",
"AccessTokenMinutes": 15,
"RefreshTokenDays": 30,
"TelegramAuthMaxAgeMinutes": 15,
"BootstrapAdminTelegramIds": [
"admin-1"
],
"BootstrapAdminEmails": [
"admin@example.com"
],
"EnableDevLogin": true
},
"FakeStatusSimulator": {
"Enabled": true,
"OwnerUserId": "admin-1",
"IntervalSeconds": 10,
"UsersChangedPerTick": 3,
"Groups": [
{ "GroupName": "Test Group 1", "UserCount": 10 },
{ "GroupName": "Test Group 2", "UserCount": 25 }
]
}
}