This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree 3 files changed +33
-2
lines changed
3 files changed +33
-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.2 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 .
58
58
APPNAME : " taas-app"
59
59
steps : *builddeploy_steps
60
60
61
+ " build-qa " :
62
+ << : *defaults
63
+ environment :
64
+ DEPLOY_ENV : " QA"
65
+ LOGICAL_ENV : " qa"
66
+ APPNAME : " taas-app"
67
+ steps : *builddeploy_steps
68
+
61
69
" build-prod " :
62
70
<< : *defaults
63
71
environment :
@@ -79,6 +87,13 @@ workflows:
79
87
- dev
80
88
- feature/shapeup4-cqrs-update
81
89
90
+ - " build-qa " :
91
+ context : org-global
92
+ filters :
93
+ branches :
94
+ only :
95
+ - qa
96
+
82
97
# Production builds are exectuted only on tagged commits to the
83
98
# master branch.
84
99
- " build-prod " :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module.exports = (() => {
6
6
console . log ( `APPENV: "${ env } "` ) ;
7
7
8
8
// for security reason don't let to require any arbitrary file defined in process.env
9
- if ( [ "prod" , "dev" ] . indexOf ( env ) < 0 ) {
9
+ if ( [ "prod" , "dev" , "qa" ] . indexOf ( env ) < 0 ) {
10
10
return require ( "./dev" ) ;
11
11
}
12
12
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ /**
3
+ * URL of Topcoder Community Website
4
+ */
5
+ TOPCODER_COMMUNITY_WEBSITE_URL : "https://topcoder-qa.com" ,
6
+
7
+ /**
8
+ * URL of Topcoder Connect Website
9
+ */
10
+ CONNECT_WEBSITE_URL : "https://connect.topcoder-qa.com" ,
11
+
12
+ API : {
13
+ V5 : "https://api.topcoder-qa.com/v5" , //"http://localhost:3000/api/v5"
14
+ V3 : "https://api.topcoder-qa.com/v3" ,
15
+ } ,
16
+ } ;
You can’t perform that action at this time.
0 commit comments