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

Commit 7fd90c3

Browse files
authored
Merge pull request #33 from topcoder-platform/ci-cd-prod
Ci cd prod
2 parents 823eb37 + c07b138 commit 7fd90c3

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ workflows:
7777
context: org-global
7878
filters:
7979
branches:
80-
only: master
80+
only: ci-cd-prod

config/development.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
GUIKIT: {
3+
DEBOUNCE_ON_CHANGE_TIME: 150,
4+
},
5+
API: {
6+
V5: "https://api.topcoder-dev.com/v5",
7+
V3: "https://api.topcoder-dev.com/v3",
8+
},
9+
URL: {
10+
COMMUNITY_APP: "https://community-app.topcoder-dev.com",
11+
},
12+
};

config/production.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
GUIKIT: {
3+
DEBOUNCE_ON_CHANGE_TIME: 150,
4+
},
5+
API: {
6+
V5: "https://api.topcoder.com/v5",
7+
V3: "https://api.topcoder.com/v3",
8+
},
9+
URL: {
10+
COMMUNITY_APP: "https://community-app.topcoder.com",
11+
},
12+
};

0 commit comments

Comments
 (0)