-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
54 lines (54 loc) · 1.55 KB
/
appsettings.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"ConnectionStrings": {
"DefaultConnection": "DataSource=Data/app_v1.1.0.db;Cache=Shared"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.EntityFrameworkCore.Database.Command": "Warning"
}
},
"AllowedHosts": "*",
"ApplicationSettings": {
"AppName": "Aquiis",
"ProductName": "Aquiis SimpleStart",
"Version": "1.1.1",
"Author": "CIS Guru",
"Email": "cisguru@outlook.com",
"Repository": "https://github.com/xnodeoncode/Aquiis",
"SoftDeleteEnabled": true,
"DatabaseFileName": "app_v1.1.0.db",
"PreviousDatabaseFileName": "app_v1.0.0.db",
"SchemaVersion": "1.1.0",
"MaxOrganizationUsers": 3,
"License": "MIT",
"LicenseUrl": "https://github.com/xnodeoncode/Aquiis/blob/main/LICENSE",
"HelpUrl": "https://github.com/xnodeoncode/Aquiis"
},
"SessionTimeout": {
"InactivityTimeoutMinutes": 18,
"WarningDurationMinutes": 3,
"Enabled": true
},
"DataProtection": {
"ApplicationName": "Aquiis"
},
"Notifications": {
"EnableInApp": true,
"EnableEmail": true,
"EnableSMS": true,
"GracefulDegradation": true
},
"SendGrid": {
"ApiKey": "{{SENDGRID_API_KEY}}",
"FromEmail": "noreply@aquiis.com",
"FromName": "Aquiis Property Management"
},
"Twilio": {
"AccountSid": "{{TWILIO_ACCOUNT_SID}}",
"AuthToken": "{{TWILIO_AUTH_TOKEN}}",
"PhoneNumber": "{{TWILIO_PHONE_NUMBER}}"
}
}