-
Notifications
You must be signed in to change notification settings - Fork 621
Expand file tree
/
Copy pathappsettings.json
More file actions
94 lines (94 loc) · 2.91 KB
/
Copy pathappsettings.json
File metadata and controls
94 lines (94 loc) · 2.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
// Note: You should --=NOT=-- put sensitive information into this file.
// This file should only be used as placeholders for keys that
// can be resolved via UserSecrets or environment variables.
// http://docs.asp.net/en/latest/security/app-secrets.html#installing-the-secret-manager-tool
"SampleData": {
"DefaultAdminUsername": "Administrator@example.com",
"DefaultAdminPassword": "YouShouldChangeThisPassword1!",
"DefaultUsername": "User@example.com",
"DefaultOrganizationUsername": "organization@example.com",
"DefaultEventManagerUsername": "eventmanager@example.com",
"DefaultCampaignManagerUsername": "campaignmanager@example.com",
"DefaultFromEmailAddress": "Administrator@example.com",
"DefaultFromDisplayName": "allReady.com Administrator",
"InsertSampleData": "true",
"InsertTestUsers": "true"
},
"General": {
"SiteBaseUrl": "http://localhost:48408/",
"DefaultTimeZone": "Central Standard Time",
"MaxImageSizeInBytes": 1048576
},
"GetASmokeAlarmApiSettings": {
"BaseAddress": "https://demo.getasmokealarm.org/",
"Token": "[getasmokealarmapisettingstoken]"
},
"ApplicationInsights": {
"InstrumentationKey": "[instrumentationkey]"
},
"Mapping": {
"EnableGoogleGeocodingService": "false",
"GoogleMapsApiKey": "[googlemapsapikey]"
},
"Data": {
"DefaultConnection": {
"ConnectionString": "Server=(localdb)\\MSSQLLocalDB;Database=AllReady;Integrated Security=true;MultipleActiveResultsets=true;"
},
"HangfireConnection": {
"ConnectionString": "Server=(localdb)\\MSSQLLocalDB;Database=AllReady;Integrated Security=true;MultipleActiveResultsets=true;"
},
"Storage": {
"AzureStorage": "[storagekey]",
"EnableAzureQueueService": "false",
"EnableAzureBlobImageService": "false"
}
},
"Email": {
"EmailFolder": "..."
},
"Authentication": {
"Facebook": {
"AppId": "[facebookappId]",
"AppSecret": "[facebookappsecret]"
},
"Twitter": {
"ConsumerKey": "[twitterconsumerkey]",
"ConsumerSecret": "[twitterconsumersecret]"
},
"MicrosoftAccount": {
"ClientId": "[microsoftclientid]",
"ClientSecret": "[microsoftclientsecret]"
},
"Google": {
"ClientId": "[googleclientid]",
"ClientSecret": "[googleclientsecret]"
},
"SendGrid": {
"UserName": "[sendgriduser]",
"Password": "[sendgridpassword]",
"FromEmail": "[sendgridemailsender]"
},
"Twilio": {
"EnableTwilio": "false",
"Sid": "[twiliosid]",
"Token": "[twiliotoken]",
"PhoneNo": "[twilionumber]"
}
},
"ApprovedRegions": {
"Enabled": true,
"Regions": [
"IDMT",
"NDSD",
"KSNE",
"MINN",
"IOWA",
"WEMO",
"EAMO",
"WISC",
"CHNI",
"CSIL"
]
}
}