You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
-5
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,6 @@ The following config parameters are supported, they are defined in `config/defau
29
29
| TOPIC | the kafka subscribe topic name | tc-x-events |
30
30
| PARTITION | the kafka partition | 0|
31
31
| KAFKA_OPTIONS | the connection option for kafka | see below about KAFKA options |
32
-
|TC_DEV_ENV| the flag whether to use topcoder development api or production| false|
33
-
| TC_AUTHN_URL | the Topcoder authentication url |https://topcoder-dev.auth0.com/oauth/ro|
34
-
| TC_AUTHZ_URL | the Topcoder authorization url |https://api.topcoder-dev.com/v3/authorizations|
35
32
| NEW_CHALLENGE_TEMPLATE | the body template for new challenge request. You can change the subTrack, reviewTypes, technologies, .. here | see `default.js`|
36
33
| NEW_CHALLENGE_DURATION_IN_DAYS | the duration of new challenge | 5 |
37
34
|TC_URL| the base URL of topcoder to get the challenge URL| defaults to `https://www.topcoder-dev.com`|
@@ -40,7 +37,6 @@ The following config parameters are supported, they are defined in `config/defau
40
37
|FIX_ACCEPTED_ISSUE_LABEL|the label name for fix accepted, should be one of the label configured in topcoder x ui|'tcx_FixAccepted'|
41
38
|ASSIGNED_ISSUE_LABEL| the label name for assigned, should be one of the label configured in topcoder x ui| 'tcx_Assigned'|
42
39
|OPEN_FOR_PICKUP_ISSUE_LABEL| the label name for open for pickup, should be one of the label configured in topcoder x ui| 'tcx_OpenForPickup'|
43
-
|TC_OR_DETAIL_LINK|the link to online review detail of challenge| see `default.js`, OR link for dev environment|
44
40
|RETRY_COUNT| the number of times an event should be retried to process| 3|
45
41
|RETRY_INTERVAL| the interval at which the event should be retried to process in milliseconds | 120000|
46
42
|READY_FOR_REVIEW_ISSUE_LABEL| the label name for ready for review, should be one of the label configured in topcoder x ui|'tcx_ReadyForReview'|
@@ -58,7 +54,6 @@ The following config parameters are supported, they are defined in `config/defau
58
54
|TYPE_ID_TASK| The registered type id of a task ||
59
55
|DEFAULT_TIMELINE_TEMPLATE_ID| The default timeline template id ||
60
56
|TC_API_URL| The topcoder backend API url |`https://api.topcoder-dev.com/v5`|
61
-
|TC_API_URL_V3| The topcoder backend API url V3 |`https://api.topcoder-dev.com/v3`|
62
57
63
58
KAFKA_OPTIONS should be object as described in https://github.com/oleksiyk/kafka#ssl
Copy file name to clipboardExpand all lines: configuration.md
-6
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,6 @@ The following config parameters are supported, they are defined in `config/defau
12
12
|KAFKA_GROUP_ID | The Kafka group id name| topcoder-x-processor |
13
13
|KAFKA_CLIENT_CERT | The Kafka SSL certificate to use when connecting| Read from kafka_client.cer file, but this can be set as a string like it is on Heroku |
14
14
|KAFKA_CLIENT_CERT_KEY | The Kafka SSL certificate key to use when connecting| Read from kafka_client.key file, but this can be set as a string like it is on Heroku|
15
-
|TC_DEV_ENV| the flag whether to use topcoder development api or production| false|
16
-
| TC_AUTHN_URL | the Topcoder authentication url |https://topcoder-dev.auth0.com/oauth/ro|
17
-
| TC_AUTHZ_URL | the Topcoder authorization url |https://api.topcoder-dev.com/v3/authorizations|
18
15
| NEW_CHALLENGE_TEMPLATE | the body template for new challenge request. You can change the subTrack, reviewTypes, technologies, .. here | see `default.js`|
19
16
| NEW_CHALLENGE_DURATION_IN_DAYS | the duration of new challenge | 5 |
20
17
|TC_URL| the base URL of topcoder to get the challenge URL| defaults to `https://www.topcoder-dev.com`|
@@ -23,13 +20,11 @@ The following config parameters are supported, they are defined in `config/defau
23
20
|FIX_ACCEPTED_ISSUE_LABEL|the label name for fix accepted, should be one of the label configured in topcoder x ui|'tcx_FixAccepted'|
24
21
|ASSIGNED_ISSUE_LABEL| the label name for assigned, should be one of the label configured in topcoder x ui| 'tcx_Assigned'|
25
22
|OPEN_FOR_PICKUP_ISSUE_LABEL| the label name for open for pickup, should be one of the label configured in topcoder x ui| 'tcx_OpenForPickup'|
26
-
|TC_OR_DETAIL_LINK|the link to online review detail of challenge| see `default.js`, OR link for dev environment|
27
23
|RETRY_COUNT| the number of times an event should be retried to process| 3|
28
24
|RETRY_INTERVAL| the interval at which the event should be retried to process in milliseconds | 120000|
29
25
|READY_FOR_REVIEW_ISSUE_LABEL| the label name for ready for review, should be one of the label configured in topcoder x ui|'tcx_ReadyForReview'|
30
26
|NOT_READY_ISSUE_LABEL| the label name for not ready, should be one of the label configured in topcoder x ui|'tcx_NotReady'|
31
27
|CANCELED_ISSUE_LABEL| the label name for canceled, should be one of the label configured in topcoder x ui|'tcx_Canceled'|
32
-
|CANCEL_CHALLENGE_INTERVAL| the time in millisecond after which the challenge will be closed| '24*60*60*1000'|
33
28
|AWS_ACCESS_KEY_ID | The Amazon certificate key to use when connecting. Use local dynamodb you can set fake value|FAKE_ACCESS_KEY_ID |
34
29
|AWS_SECRET_ACCESS_KEY | The Amazon certificate access key to use when connecting. Use local dynamodb you can set fake value|FAKE_SECRET_ACCESS_KEY |
35
30
|AWS_REGION | The Amazon certificate region to use when connecting. Use local dynamodb you can set fake value|FAKE_REGION |
@@ -44,7 +39,6 @@ The following config parameters are supported, they are defined in `config/defau
44
39
|TYPE_ID_TASK| The registered type id of a task ||
45
40
|DEFAULT_TIMELINE_TEMPLATE_ID| The default timeline template id ||
46
41
|TC_API_URL| The topcoder backend API url |`https://api.topcoder-dev.com/v5`|
47
-
|TC_API_URL_V3| The topcoder backend API url V3 |`https://api.topcoder-dev.com/v3`|
48
42
|DEFAULT_TRACK_ID| The default track id ||
49
43
50
44
KAFKA_OPTIONS should be object as described in https://github.com/oleksiyk/kafka#ssl
loggerFile.info(`EndPoint: GET members/${handle}, GET parameters: null, Status Code:${statusCode}, Response:${circularJSON.stringify(response.data)}`);
0 commit comments