-
Notifications
You must be signed in to change notification settings - Fork 2
/
appsettings.json
64 lines (64 loc) · 1.74 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
},
"Umbraco": {
"CMS": {
"Global": {
"Id": "0ceadec8-5872-435a-bd5a-ad3ba00b0c08",
"SanitizeTinyMce": true
},
"Unattended": {
"InstallUnattended": true,
"UnattendedUserName": "Test",
"UnattendedUserEmail": "test@test.com",
"UnattendedUserPassword": "test123456"
},
"Content": {
"AllowEditInvariantFromNonDefault": true,
"ContentVersionCleanupPolicy": {
"EnableCleanup": true
}
},
"DeliveryApi": {
"Enabled": true,
"PublicAccess": true,
"RichTextOutputAsJson": false
},
"ModelsBuilder": {
"ModelsMode": "SourceCodeManual"
}
},
"AuthorizedServices": {
"TokenEncryptionKey": "",
"Services": {
"meetup": {
"DisplayName": "Meetup",
"ApiHost": "https://api.meetup.com",
"IdentityHost": "https://secure.meetup.com",
"TokenHost": "https://secure.meetup.com",
"RequestIdentityPath": "/oauth2/authorize",
"AuthorizationUrlRequiresRedirectUrl": true,
"RequestTokenPath": "/oauth2/access",
"RequestTokenFormat": "FormUrlEncoded",
"ClientId": "==SECRET==",
"ClientSecret": "==SECRET==",
"SampleRequest": "/gql",
"JsonSerializer": "SystemTextJson"
}
}
}
},
"ExternalServices": {
"CosmosDbEndpoint": "https://devrel.documents.azure.com:443/",
"CosmosDbMasterKey": "==SECRET=="
}
}