-
Notifications
You must be signed in to change notification settings - Fork 515
/
launchSettings.json
41 lines (41 loc) · 1.88 KB
/
launchSettings.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
{
"profiles": {
"Default": {
"commandName": "Project",
"environmentVariables": {
"TestAuthEnvironment:FilePath": "..//..//testauthenvironment.json",
"DataStore": "CosmosDb",
"ASPNETCORE_ENVIRONMENT": "development"
},
"applicationUrl": "https://localhost:44348/"
},
"CosmosDb": {
"commandName": "Project",
"environmentVariables": {
"TestAuthEnvironment:FilePath": "..//..//testauthenvironment.json",
"DataStore": "CosmosDb",
"FhirServer:Operations:Export:StorageAccountConnection": "UseDevelopmentStorage=true",
"ASPNETCORE_ENVIRONMENT": "development"
},
"applicationUrl": "https://localhost:44348/"
},
"SqlServer": {
"commandName": "Project",
"environmentVariables": {
"SqlServer:Initialize": "true",
"SqlServer:AllowDatabaseCreation": "true",
"SqlServer:SchemaOptions:AutomaticUpdatesEnabled": "true",
"TestAuthEnvironment:FilePath": "..//..//testauthenvironment.json",
"SqlServer:ConnectionString": "server=(local);Initial Catalog=FHIR_R5;Integrated Security=true;TrustServerCertificate=true",
"DataStore": "SqlServer",
"TaskHosting:Enabled": "true",
"TaskHosting:MaxRunningTaskCount": "2",
"FhirServer:Operations:Export:StorageAccountConnection": "UseDevelopmentStorage=true",
"FhirServer:Operations:IntegrationDataStore:StorageAccountConnection": "UseDevelopmentStorage=true",
"FhirServer:Operations:Import:Enabled": "true",
"ASPNETCORE_ENVIRONMENT": "development"
},
"applicationUrl": "https://localhost:44348/"
}
}
}