forked from Ed-Fi-Alliance-OSS/AdminAPI-2.x
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunchSettings.json
More file actions
57 lines (57 loc) · 1.79 KB
/
launchSettings.json
File metadata and controls
57 lines (57 loc) · 1.79 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
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:47193",
"sslPort": 44370
}
},
"profiles": {
"EdFi.Ods.AdminApi (Dev)": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:7214;http://localhost:5214",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"AUTHENTICATION__ISSUERURL": "https://localhost:7214"
}
},
"EdFi.Ods.AdminApi (Prod)": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:7214;http://localhost:5214",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Production",
"AUTHENTICATION__ISSUERURL": "https://localhost:7214",
"AUTHENTICATION__SIGNINGKEY": "TDMyNH0lJmo7aDRnNXYoSmAwSXQpV09nbitHSWJTKn0=",
"AUTHENTICATION__ALLOWREGISTRATION": "true",
"SWAGGERSETTINGS__ENABLESWAGGER": "true"
}
},
"EdFi.Ods.AdminApi (Docker)": {
"commandName": "Docker",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"httpPort": 51803,
"useSSL": true,
"sslPort": 44360,
"DockerfileRunArguments": "adminapi-dev"
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"AUTHENTICATION__ISSUERURL": "https://localhost:44370"
}
}
}
}