From e4e6bdf7b243fb1ace876202e20095f9bd115377 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Mon, 5 Apr 2021 18:09:05 +0530 Subject: [PATCH 1/2] Configuring cicd prod --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 83dfe31..6578305 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -77,4 +77,4 @@ workflows: context: org-global filters: branches: - only: master + only: ci-cd-prod From c07b138b700c312c65e52889b2cad2ed62c1bc38 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Tue, 6 Apr 2021 17:35:10 +0530 Subject: [PATCH 2/2] Configuring cicd prod --- config/development.js | 12 ++++++++++++ config/production.js | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/config/development.js b/config/development.js index e69de29..bc871f7 100644 --- a/config/development.js +++ b/config/development.js @@ -0,0 +1,12 @@ +module.exports = { + GUIKIT: { + DEBOUNCE_ON_CHANGE_TIME: 150, + }, + API: { + V5: "https://api.topcoder-dev.com/v5", + V3: "https://api.topcoder-dev.com/v3", + }, + URL: { + COMMUNITY_APP: "https://community-app.topcoder-dev.com", + }, +}; diff --git a/config/production.js b/config/production.js index e69de29..1d91e6b 100644 --- a/config/production.js +++ b/config/production.js @@ -0,0 +1,12 @@ +module.exports = { + GUIKIT: { + DEBOUNCE_ON_CHANGE_TIME: 150, + }, + API: { + V5: "https://api.topcoder.com/v5", + V3: "https://api.topcoder.com/v3", + }, + URL: { + COMMUNITY_APP: "https://community-app.topcoder.com", + }, +};