Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

PROD-2087 Platform MVP Prod Deployment 2022-06-01 qa -> master #141

Merged
merged 25 commits into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f95082c
PROD-1551_header
brooketopcoder May 2, 2022
eb793c7
PROD-1551 #comment merge dev and remove all
brooketopcoder May 3, 2022
a4d2084
PROD-1850 #comment hide navigation for
brooketopcoder May 5, 2022
9593bcf
Merge pull request #112 from topcoder-platform/PROD-1850_header-demo-…
testflyjets May 5, 2022
289ef43
PROD-1551 #comment lean-up obsolete
brooketopcoder May 6, 2022
9035527
Merge pull request #113 from topcoder-platform/PROD-1551_header
brooketopcoder May 6, 2022
34b91b8
Upgrades node to 10.24.1
testflyjets May 12, 2022
4be5824
Upgrades node to 12.22.12
testflyjets May 12, 2022
b5e5291
Upgrades node to 14.19.2
testflyjets May 12, 2022
003633a
Uses npm update to fix a few packages
testflyjets May 12, 2022
cab3193
Updates node-sass to 6.0.1
testflyjets May 12, 2022
ea5fdbb
Reinstalls node packages
testflyjets May 12, 2022
283d587
PROD-1536 #comment Added two shell scripts start-local.sh and start-l…
May 23, 2022
3db3a3e
PROD-1536 #comment Updated README #time 2h
May 23, 2022
aee5a27
PROD-2048 deploy qa to dev env #time 5m
brooketopcoder May 24, 2022
8233176
Merge pull request #131 from topcoder-platform/PROD-2048_deploy-qa
brooketopcoder May 24, 2022
9be4518
Merge branch 'qa' into PROD-1551_header
brooketopcoder May 24, 2022
614e635
Merge pull request #137 from topcoder-platform/PROD-1551_header
brooketopcoder May 24, 2022
cecdb5f
Merge branch 'qa' into PROD-1536_update-readme
brooketopcoder May 24, 2022
5ea50f0
Merge pull request #138 from topcoder-platform/PROD-1536_update-readme
brooketopcoder May 24, 2022
8939ecc
Merge branch 'qa' into PROD-1532_upgrade_header_node_version
brooketopcoder May 24, 2022
959e860
Merge pull request #139 from topcoder-platform/PROD-1532_upgrade_head…
brooketopcoder May 24, 2022
4edcf4e
PROD-2057 #comment add support route #time 5m
brooketopcoder May 26, 2022
5d9f7ac
Merge pull request #140 from topcoder-platform/PROD-2057_support-page
testflyjets May 26, 2022
367bdf9
PROD-2087 #comment revert deployment of qa branch to dev env #time 5m
brooketopcoder Jun 1, 2022
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
Prev Previous commit
Next Next commit
PROD-1536 #comment Added two shell scripts start-local.sh and start-l…
…ocal-proxy.sh and corresponding npm scripts
  • Loading branch information
Maria Mattlin committed May 23, 2022
commit 283d58730181a124717a13261bdc8f70eae8a804
7 changes: 1 addition & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"name": "@topcoder/mfe-header",
"scripts": {
"start": "node server.js",
"start-local": "sh start-local.sh",
"start-local-proxy": "sh start-local-proxy.sh",
"dev": "cross-env APPMODE=development webpack-dev-server",
"dev-https": "cross-env APPMODE=development webpack-dev-server --https",
"build": "webpack --mode=${APPMODE:-development} --env.config=${APPENV:-dev}",
Expand Down Expand Up @@ -84,4 +86,4 @@
"tc-auth-lib": "topcoder-platform/tc-auth-lib#1.0.3",
"tc-ui": "appirio-tech/tc-ui#feature/connectv2"
}
}
}
7 changes: 7 additions & 0 deletions start-local-proxy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
#Load nvm
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"

nvm use
local-ssl-proxy -n local.topcoder-dev.com -s 443 -t 8080
11 changes: 11 additions & 0 deletions start-local.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
#Load nvm
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"

export APPMODE="development"
export APPENV="local"

nvm use
npm i
npm run dev