Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ ISSUER_URI=https://oauth.nhsnlink.org/realms/NHSNLink

KafkaConnection__SaslUsername=${KAFKA_SASL_CLIENT_USER}
KafkaConnection__SaslPassword=${KAFKA_SASL_CLIENT_PASSWORD}
Redis__Password=${REDIS_PASS}
Redis__Password=${REDIS_PASS}
InternalBlobStorage__BlobContainerName=${INTERNAL_BLOB_CONTAINER_NAME}
ExternalBlobStorage__BlobContainerName=${EXTERNAL_BLOB_CONTAINER_NAME}
33 changes: 12 additions & 21 deletions DotNet/Account/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"profiles": {
"Docker": {
"commandName": "Docker",
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
"ASPNETCORE_ENVIRONMENT": "Docker",
"KafkaConnection__BootstrapServers__0": "localhost:9094",
"ConnectionStrings__Redis": "localhost:6379",
"ConnectionStrings__DatabaseConnection": "Server=tcp:localhost,1433;Initial Catalog=link-account;Persist Security Info=False;User ID=sa;Password=${LINK_DB_PASS};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;",
"Serilog__WriteTo__0__Args__uri": "http://localhost:3100",
"Telemetry__OtelCollectorEndpoint": "http://localhost:4317",
"ServiceRegistry__TenantService__TenantServiceURL": "http://localhost:8074"
},
"publishAllPorts": true,
"useSSL": true
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:8060"
},
"ConsoleApp": {
"commandName": "Project",
Expand All @@ -18,21 +24,6 @@
"launchBrowser": false,
"launchUrl": "api/account/swagger",
"applicationUrl": "http://localhost:5037;https://localhost:7224"
},
"IISExpress": {
"commandName": "IISExpress",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"ancmHostingModel": "OutOfProcess"
}
},
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:5037",
"sslPort": 0
}
}
}
15 changes: 12 additions & 3 deletions DotNet/Admin.BFF/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Docker",

"KafkaConnection__BootstrapServers__0": "localhost:9094",
"ConnectionStrings__Redis": "localhost:6379",
"Serilog__WriteTo__0__Args__uri": "http://localhost:3100",
"Telemetry__OtelCollectorEndpoint": "http://localhost:4317",

"ServiceRegistry__TenantService__TenantServiceURL": "http://localhost:8074",
"ServiceRegistry__AccountServiceUrl": "http://localhost:8060",
"ServiceRegistry__AuditServiceUrl": "http://localhost:8062",
Expand Down Expand Up @@ -38,7 +37,17 @@
"ReverseProxy__Clusters__TerminologyService__Destinations__destination1__Address": "http://localhost:8076"
},
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:8065"
"applicationUrl": "http://localhost:8063"
},
"http": {
"commandName": "Project",
"launchBrowser": false,
"launchUrl": "api/swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:5218"
}
}
}
42 changes: 11 additions & 31 deletions DotNet/Audit/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,19 @@
"launchUrl": "http://localhost:7344/swagger",
"applicationUrl": "http://localhost:7344;https://localhost:7355"
},
"Docker": {
"commandName": "Docker",
"DockerfileRunArguments": "--name=Link-Audit --network=local-link -p 7344:8080 -p 7355:8081",
"launchUrl": "http://localhost:7344/swagger",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"Link__Audit__KafkaConnection__BootstrapServers__0": "kafka:29092/",
"Link__Audit__Logging__Serilog__WriteTo__1__Args__uri": "http://loki:3100",
"Link__Audit__TelemetryConfig__TelemetryCollectorEndpoint": "http://collector:55690",
"ASPNETCORE_URLS": "http://+:8080;https://+:8081",
"ASPNETCORE_HTTP_PORTS": "8080",
"ASPNETCORE_HTTPS_PORTS": "8081",
"Kestrel__Endpoints__Http__Url": "http://*:8080",
"Kestrel__Endpoints__Https__Url": "http://*:8081"
},
"publishAllPorts": true,
"useSSL": true
},
"IISExpress": {
"commandName": "IISExpress",
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
"ASPNETCORE_ENVIRONMENT": "Docker",
"KafkaConnection__BootstrapServers__0": "localhost:9094",
"ConnectionStrings__DatabaseConnection": "Server=tcp:localhost,1433;Initial Catalog=link-audit;Persist Security Info=False;User ID=sa;Password=${LINK_DB_PASS};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;",
"Serilog__WriteTo__0__Args__uri": "http://localhost:3100",
"Telemetry__OtelCollectorEndpoint": "http://localhost:4317",
"ServiceRegistry__TenantService__TenantServiceURL": "http://localhost:8074/api"
},
"ancmHostingModel": "OutOfProcess"
}
},
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:5234",
"sslPort": 0
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:8062"
}
}
}
50 changes: 11 additions & 39 deletions DotNet/Census/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"profiles": {
"Docker": {
"commandName": "Docker",
"launchBrowser": true,
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger",
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "DockerLocal"
"ASPNETCORE_ENVIRONMENT": "Docker",
"KafkaConnection__BootstrapServers__0": "localhost:9094",
"ConnectionStrings__DatabaseConnection": "Server=tcp:localhost,1433;Initial Catalog=link-census;Persist Security Info=False;User ID=sa;Password=${LINK_DB_PASS};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;",
"Serilog__WriteTo__0__Args__uri": "http://localhost:3100",
"Telemetry__OtelCollectorEndpoint": "http://localhost:4317",
"ServiceRegistry__TenantService__TenantServiceURL": "http://localhost:8074"
},
"publishAllPorts": true,
"useSSL": true
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:8068"
},
"ConsoleApp": {
"commandName": "Project",
Expand All @@ -18,38 +22,6 @@
},
"dotnetRunMessages": true,
"applicationUrl": "https://localhost:7245;http://localhost:5234"
},
"ConsoleAppSecure": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:5234"
},
"IISExpress": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"ancmHostingModel": "OutOfProcess"
},
"Census": {
"commandName": "Project",
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5038;https://localhost:7225"
}
},
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:39776",
"sslPort": 44393
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"profiles": {
"http": {
"commandName": "Project",
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:5059"
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
Expand Down
9 changes: 8 additions & 1 deletion DotNet/DataAcquisition/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"profiles": {
"Query": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5194;https://localhost:7194",
"dotnetRunMessages": true
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Docker",

"KafkaConnection__BootstrapServers__0": "localhost:9094",
"ConnectionStrings__DatabaseConnection": "Server=tcp:localhost,1433;Initial Catalog=link-dataacquisition;Persist Security Info=False;User ID=sa;Password=${LINK_DB_PASS};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;",
"ConnectionStrings__Redis": "localhost:6379",
Expand Down
10 changes: 10 additions & 0 deletions DotNet/Normalization/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"profiles": {
"Normalization": {
"commandName": "Project",
"launchBrowser": false,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5038;https://localhost:7038",
"dotnetRunMessages": true
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
Expand Down
8 changes: 8 additions & 0 deletions DotNet/QueryDispatch/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"profiles": {
"QueryDispatch": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:5118;https://localhost:7091"
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
Expand Down
11 changes: 10 additions & 1 deletion DotNet/Report/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
{
"profiles": {
"ConsoleApp": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5110;https://localhost:7110",
"dotnetRunMessages": true
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Docker",
"KafkaConnection__BootstrapServers__0": "localhost:9094",
"MongoDB__ConnectionString": "mongodb://localhost:27017",
"MongoDB__ConnectionString": "mongodb://localhost:17017",
"ConnectionStrings__Redis": "localhost:6379",
"InternalBlobStorage__ConnectionString": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://localhost:10000/devstoreaccount1",
"Serilog__WriteTo__0__Args__uri": "http://localhost:3100",
"Telemetry__OtelCollectorEndpoint": "http://localhost:4317",
"ServiceRegistry__TenantService__TenantServiceUrl": "http://localhost:8074",
Expand Down
12 changes: 11 additions & 1 deletion DotNet/Submission/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"profiles": {
"ConsoleApp": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:7046;http://localhost:5046",
"dotnetRunMessages": true
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
Expand All @@ -9,7 +17,9 @@
"ConnectionStrings__DatabaseConnection": "Server=tcp:localhost,1433;Initial Catalog=link-submission;Persist Security Info=False;User ID=sa;Password=${LINK_DB_PASS};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;",
"Serilog__WriteTo__0__Args__uri": "http://localhost:3100",
"Telemetry__OtelCollectorEndpoint": "http://localhost:4317",
"ServiceRegistry__ReportServiceUrl": "http://localhost:8072"
"ServiceRegistry__ReportServiceUrl": "http://localhost:8072",
"InternalBlobStorage__ConnectionString": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://localhost:10000/devstoreaccount1",
"ExternalBlobStorage__ConnectionString": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://localhost:10000/devstoreaccount1"
},
"dotnetRunMessages": true,
"applicationUrl": "http://localhost:8073"
Expand Down
8 changes: 8 additions & 0 deletions DotNet/Tenant/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"profiles": {
"ConsoleApp": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:7331;https://localhost:7332",
"dotnetRunMessages": true
},
"http-docker": {
"commandName": "Project",
"launchBrowser": false,
Expand Down
Loading