Skip to content

Commit

Permalink
Update to reference Connect instead of Direct for project ID
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgasper committed Dec 22, 2020
1 parent 498d19e commit e9cd8cc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions TopcoderXDeploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ You can do this by clicking your logged in username in the upper right of the To

Once you have registered your account, go into `Project Management` and add a new project for either a Gitlab or Github project you have access to. Gitlab is likely easier for testing - you can create a free test project under your own account.

Use Topcoder Direct ID `7377` since this has a valid billing account in the dev environment.
Use Topcoder Connect ID `16665` since this has a valid billing account in the dev environment.

Once it's been added, click `Manage` for the project in the list on `Project Management` and click `Add Webhooks`. Once the webhook has been added, you should be able to see it in the Gitlab project under `Settings` --> `Integrations` --> `Webhooks`

Expand Down Expand Up @@ -237,10 +237,10 @@ IS_LOCAL: true
Justins-Mac-Pro:~ justingasper$ heroku config --app topcoder-x-ui-dev
=== topcoder-x-ui-dev Config Vars
BUILD_ENV: heroku
GITHUB_CLIENT_ID:
GITHUB_CLIENT_SECRET:
GITLAB_CLIENT_ID:
GITLAB_CLIENT_SECRET:
GITHUB_CLIENT_ID:
GITHUB_CLIENT_SECRET:
GITLAB_CLIENT_ID:
GITLAB_CLIENT_SECRET:
HOOK_BASE_URL: https://topcoder-x-receiver-dev.herokuapp.com
KAFKA_CLIENT_CERT: <cert>
KAFKA_CLIENT_CERT_KEY: <key>
Expand Down
6 changes: 3 additions & 3 deletions src/front/src/app/projects/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h4>You don't have active projects right now. Please
<thead>
<tr>
<th class="col-lg-2">Project Name</th>
<th class="col-lg-2">Topcoder Direct ID</th>
<th class="col-lg-2">Topcoder Connect ID</th>
<th class="col-lg-2">Service Provider</th>
<th class="col-lg-2" ng-show="isAdminUser">Owner</th>
<th class="col-lg-2">Copilot</th>
Expand Down Expand Up @@ -118,7 +118,7 @@ <h4>You don't have active projects right now. Please
<thead>
<tr>
<th class="col-lg-2">Project Name</th>
<th class="col-lg-2">Topcoder Direct ID</th>
<th class="col-lg-2">Topcoder Connect ID</th>
<th class="col-lg-2">Service Provider</th>
<th class="col-lg-2" ng-show="isAdminUser">Owner</th>
<th class="col-lg-2" data-sort-ignore="true"></th>
Expand Down Expand Up @@ -157,4 +157,4 @@ <h4>You don't have active projects right now. Please
</div>
</div>
</div>
</div>
</div>
6 changes: 3 additions & 3 deletions src/front/src/app/upsertproject/upsertproject.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ <h2>{{title}}</h2>
<br />
<label class="form-label">Direct ID:</label>
<input class="form-control" type="number" ng-model="project.tcDirectId" required />
<small class="form-hint">The Topcoder Direct ID of the project. You can obtain this through the URL to the
<small class="form-hint">The Topcoder Connect Project ID of the project. You can obtain this through the URL to the
project in Topcoder Direct. For example:
"https://www.topcoder.com/direct/projectOverview?formData.projectId=16901" - Enter ID "16901"</small>
"https://connect.topcoder.com/projects/16598" - Enter ID "16598"</small>
<span ng-show="projectForm.project.tcDirectId.$touched && projectForm.project.tcDirectId.$invalid">The
TC Direct ID is required.</span>
TC Connect Project ID is required.</span>
<br />
<br />
<label class="form-label">Repo URL:</label>
Expand Down

0 comments on commit e9cd8cc

Please sign in to comment.