Browse Source

Update JS packages to new versions without know vulnerabilities;

Add HealthChecks to appsettings so SPA can run from VS using services in containers
pull/968/head
Miguel Veloso 5 years ago
parent
commit
9720b4c415
4 changed files with 16 additions and 11 deletions
  1. +3
    -0
      src/Web/WebSPA/appsettings.json
  2. +6
    -6
      src/Web/WebSPA/package-lock.json
  3. +2
    -0
      src/Web/WebSPA/package.json
  4. +5
    -5
      src/Web/WebSPA/web.config

+ 3
- 0
src/Web/WebSPA/appsettings.json View File

@ -3,6 +3,9 @@
"MarketingUrl": "http://localhost:5110",
"CallBackUrl": "http://localhost:5104/",
"PurchaseUrl": "http://localhost:5200",
"PurchaseUrlHC": "http://localhost:5202/hc",
"MarketingUrlHC": "http://localhost:5203/hc",
"IdentityUrlHC": "http://localhost:5105/hc",
"UseCustomizationData": true,
"IsClusterEnv": "False",
"ActivateCampaignDetailFunction": false,


+ 6
- 6
src/Web/WebSPA/package-lock.json View File

@ -6260,9 +6260,9 @@
}
},
"lodash": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
"integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
"version": "4.17.11",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
"integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="
},
"lodash.assign": {
"version": "4.2.0",
@ -6478,9 +6478,9 @@
}
},
"merge": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz",
"integrity": "sha1-dTHjnUlJwoGma4xabgJl6LBYlNo=",
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz",
"integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==",
"dev": true
},
"merge-descriptors": {


+ 2
- 0
src/Web/WebSPA/package.json View File

@ -65,6 +65,8 @@
"@types/selenium-webdriver": "3.0.10",
"codelyzer": "~4.4.4",
"handlebars": "~4.0.13",
"lodash": "4.17.11",
"merge": "1.2.1",
"sass-lint": "1.12.1",
"ts-helpers": "1.1.2",
"ts-node": "~7.0.1",


+ 5
- 5
src/Web/WebSPA/web.config View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
Configure your application settings in appsettings.json. Learn more at https://go.microsoft.com/fwlink/?LinkId=786380
-->
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
<environmentVariables />
</aspNetCore>
</system.webServer>
</configuration>
</configuration>

Loading…
Cancel
Save