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 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", + }, +};