-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathappsettings.Development.json
57 lines (57 loc) · 2.48 KB
/
appsettings.Development.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
{
"CoreStorage": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://data-storage:10000/devstoreaccount1;QueueEndpoint=http://data-storage:10001/devstoreaccount1;TableEndpoint=http://data-storage:10002/devstoreaccount1",
"PublicStorage": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://data-storage:10000/devstoreaccount1;QueueEndpoint=http://data-storage:10001/devstoreaccount1;",
"PublisherStorage": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;QueueEndpoint=http://data-storage:10001/devstoreaccount1;TableEndpoint=http://data-storage:10002/devstoreaccount1;",
"ConnectionStrings": {
"ContentDb": "Server=db;Database=content;User=adminapp;Password=Your_Password123;TrustServerCertificate=True;",
"StatisticsDb": "Server=db;Database=statistics;User=adminapp;Password=Your_Password123;TrustServerCertificate=True;",
"PublicDataDb": "Host=db;Username=app_admin;Password=password;Database=public_data"
},
"App": {
"Url": "https://localhost:5021",
"EnableSwagger": true,
"EnableThemeDeletion": true
},
"AppInsights": {
"InstrumentationKey": ""
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information",
"Microsoft.EntityFrameworkCore.Database.Command": "Warning"
}
},
"Notify": {
"ApiKey": "",
"InviteWithRolesTemplateId": "",
"PublicationRoleTemplateId": "",
"ReleaseRoleTemplateId": "",
"PreReleaseTemplateId": "",
"ContributorTemplateId": "",
"ReleaseHigherReviewersTemplateId": "",
"MethodologyHigherReviewersTemplateId": ""
},
"PreReleaseAccess": {
"AccessWindow": {
"MinutesBeforeReleaseTimeStart": 1440
}
},
"ReleaseApproval": {
"PublishReleasesCronSchedule": "0 0-58/2 * * * *",
"PublishReleaseContentCronSchedule": "0 1-59/2 * * * *"
},
"PublicApp": {
"Url": "http://localhost:3000"
},
"PublicDataDbExists": false,
"PublicDataApi": {
"PublicUrl": "http://localhost:5050",
"PrivateUrl": "http://localhost:5050",
"DocsUrl": "https://dev.statistics.api.education.gov.uk/docs"
},
"PublicDataProcessor": {
"Url": "http://localhost:7074"
}
}