Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 862beb2

Browse files
authoredDec 16, 2020
Merge pull request #27 from topcoder-platform/feature/api-integration
Feature: API Integration
2 parents 0159912 + 06df9d1 commit 862beb2

File tree

25 files changed

+387
-4092
lines changed

25 files changed

+387
-4092
lines changed
 

‎.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ builddeploy_steps: &builddeploy_steps
2929
- run: *install_dependency
3030
- run: *install_deploysuite
3131
#- restore_cache: *restore_cache_settings_for_build
32-
- run:
32+
- run:
3333
command: |
3434
./awsconfiguration.sh $DEPLOY_ENV
3535
source awsenvconf
3636
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-buildvar
37-
- run:
37+
- run:
3838
command: |
3939
source buildenvvar
40-
./build.sh ${APPNAME}
40+
./build.sh ${APPNAME}
4141
#- save_cache: *save_cache_settings
4242
- deploy:
4343
name: Running MasterScript.
@@ -82,7 +82,7 @@ workflows:
8282
filters:
8383
branches:
8484
only:
85-
- dev
85+
- feature/api-integration
8686

8787
# Production builds are exectuted only on tagged commits to the
8888
# master branch.

‎config/development.js

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
module.exports = {
2-
/**
3-
* Topcoder Member Service base URL
4-
*/
5-
TC_MEMBER_SERVICE_URL: "https://api.topcoder-dev.com/v3/members",
6-
7-
/**
8-
* Topcoder Teams Service base URL
9-
*/
10-
TC_TEAMS_SERVICE_URL: "https://api.topcoder-dev.com/taasmock",
11-
122
/**
133
* URL of Topcoder Community Website
144
*/
@@ -18,4 +8,7 @@ module.exports = {
188
* Email to report issues to
199
*/
2010
EMAIL_REPORT_ISSUE: "support+team-issue@topcoder-dev.com",
11+
API: {
12+
V5: "https://api.topcoder-dev.com/v5",
13+
},
2114
};

‎config/production.js

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
module.exports = {
2-
/**
3-
* Topcoder Member Service base URL
4-
*/
5-
TC_MEMBER_SERVICE_URL: "https://api.topcoder.com/v3/members",
6-
7-
/**
8-
* Topcoder Teams Service base URL
9-
*/
10-
TC_TEAMS_SERVICE_URL: "http://localhost:8502/taasmock",
11-
122
/**
133
* URL of Topcoder Community Website
144
*/
@@ -18,4 +8,7 @@ module.exports = {
188
* Email to report issues to
199
*/
2010
EMAIL_REPORT_ISSUE: "support+team-issue@topcoder.com",
11+
API: {
12+
V5: "https://api.topcoder.com/v5",
13+
},
2114
};
-12.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)
This repository has been archived.