This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ install_dependency: &install_dependency
11
11
install_deploysuite : &install_deploysuite
12
12
name : Installation of install_deploysuite.
13
13
command : |
14
- git clone --branch v1.4.8 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
14
+ git clone --branch v1.4.14 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
15
15
cp ./../buildscript/master_deploy.sh .
16
16
cp ./../buildscript/buildenv.sh .
17
17
cp ./../buildscript/awsconfiguration.sh .
55
55
APPNAME : " mfe-header"
56
56
steps : *builddeploy_steps
57
57
58
+ " build-qa " :
59
+ << : *defaults
60
+ environment :
61
+ DEPLOY_ENV : " QA"
62
+ LOGICAL_ENV : " qa"
63
+ APPNAME : " mfe-header"
64
+ steps : *builddeploy_steps
65
+
58
66
" build-prod " :
59
67
<< : *defaults
60
68
environment :
@@ -76,6 +84,14 @@ workflows:
76
84
- dev
77
85
- feat/regsource
78
86
87
+ - " build-qa " :
88
+ context : org-global
89
+ filters :
90
+ branches :
91
+ only :
92
+ - qa
93
+
94
+
79
95
# Production builds are exectuted only on tagged commits to the
80
96
# master branch.
81
97
- " build-prod " :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module.exports = (() => {
4
4
const env = process . env . APPENV || "dev" ;
5
5
6
6
// for security reason don't let to require any arbitrary file defined in process.env
7
- if ( [ "prod" , "dev" ] . indexOf ( env ) < 0 ) {
7
+ if ( [ "prod" , "dev" , "qa" ] . indexOf ( env ) < 0 ) {
8
8
return require ( "./dev" ) ;
9
9
}
10
10
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ URL : {
3
+ ACCOUNTS_APP_CONNECTOR : "https://accounts-auth0.topcoder-qa.com" , // "http://localhost:5000"
4
+ AUTH : "https://accounts-auth0.topcoder-qa.com" , // "http://localhost:5000"
5
+ TC_NOTIFICATION_URL : "https://api.topcoder-qa.com/v5/notifications" ,
6
+ CONNECT_DOMAIN : "https://connect.topcoder-qa.com" ,
7
+ COMMUNITY_DOMAIN : "https://www.topcoder-qa.com" ,
8
+ PLATFORM_DOMAIN : "https://platform.topcoder-qa.com" ,
9
+ TAAS_APP : "https://platform.topcoder-qa.com/taas/myteams" ,
10
+ PLATFORM_UI : "https://platform-ui.topcoder-qa.com" ,
11
+ } ,
12
+ API : {
13
+ V3 : "https://api.topcoder-qa.com/v3" ,
14
+ V5 : "https://api.topcoder-qa.com/v5" ,
15
+ } ,
16
+ REAUTH_OFFSET : 55 , // seconds
17
+ PROFILE_CREATION_DATE_THRESHOLD : "2021-10-25" , // format: "YYYY-MM-DD"
18
+ } ;
You can’t perform that action at this time.
0 commit comments