Skip to content

Commit

Permalink
Merge branch 'master' into java_11_upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Munoz authored Dec 15, 2020
2 parents 35ae13d + d7b40fa commit 8c99b96
Show file tree
Hide file tree
Showing 94 changed files with 6,616 additions and 5,849 deletions.
6 changes: 4 additions & 2 deletions pantheon-bundle/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"scripts": {
"spandx": "spandx",
"gulp": "gulp",
"rimraf": "rimraf",
"prebuild": "yarn clean",
"build": "webpack --config webpack.prod.js",
"start": "gulp",
Expand Down Expand Up @@ -77,8 +78,9 @@
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@patternfly/react-core": "^4.32.1",
"@patternfly/react-icons": "^4.5.0",
"@patternfly/react-core": "^4.50.2",
"@patternfly/react-icons": "^4.7.11",
"@patternfly/react-table": "^4.18.14",
"@testing-library/react": "^9.1.3",
"sinon": "^7.4.1"
}
Expand Down
22 changes: 17 additions & 5 deletions pantheon-bundle/frontend/spandx.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ require("dotenv").config();
const HOST = process.env.HOST || 'localhost';
// If not default to 9595
const PORT = process.env.PORT || 9595;
// Proxy for Pantheon Data
const PANTHEON_PROXY = process.env.PANTHEON_PROXY || 'http://localhost:8181';

module.exports = {
host: {
Expand All @@ -24,27 +26,37 @@ module.exports = {

"/content": {
host: {
local: "http://localhost:8181"
local: PANTHEON_PROXY
}
},
"/system": {
host: {
local: "http://localhost:8181"
local: PANTHEON_PROXY
}
},
"/pantheon/builddate.json": {
host: {
local: PANTHEON_PROXY
}
},
"/pantheon/internal/modules.json": {
host: {
local: PANTHEON_PROXY
}
},
"/pantheon": {
host: {
local: "http://localhost:8181"
local: PANTHEON_PROXY
}
},
"/conf": {
host: {
local: "http://localhost:8181"
local: PANTHEON_PROXY
}
},
"/j_security_check": {
host: {
local: "http://localhost:8181"
local: PANTHEON_PROXY
}
}
// Route a URL path to an app server, and watch local files for changes.
Expand Down

This file was deleted.

Loading

0 comments on commit 8c99b96

Please sign in to comment.