Tenant resources

Repositories

You can connect and import models from both public and private GitHub repositories. In TRAC Professional, connections to other version control systems and repositories can also be configured using plug-ins.

View tenant repositories

You automatically have access to TRAC’s ‘examples’ repo, so it should look like this…

select file

Installing the GitHub application

This step is not required if you only want to add public repositories.

To add a private repository you need to install our GitHub application. Click this link then click ‘Install’.

github app

You can install the application in your user account or any of organisation you are a member of. You need to do it for each organisation with a repository that you wish to connect.

github app

For each account, specify if the installation applies to all repositories or a sub-set.

github app

If you are not authorised to approve the installation a request will be sent to a manager in the organisation. If you are the manager, the button on the previous screen will say ‘Install’ rather than ‘Request’.

Now you need to tell TRAC which repositories you want connected.

Note

You can complete the next step while the request is pending approval but you won’t be able to upload any models until it is approved.

Connecting GitHub repositories

To connect your own repo’s, you edit a configuration file in the folder you defined as part of the TRAC set-up.

select file

The file contains lots of system configuration information, we are only interested in the ‘repositories’ section.

To add a new repository, copy the examples repo details and change the following rows:

  • A = key, how the repo will be labelled in the application

  • B = name of the repo in GitHub

  • C = repo owner in GitHub

  • D = owner type, which is either organization or user (for personal repo’s)

  • E = the url of the repo in GitHub

  • F = your GitHub access token (not required for public repos)

select file

Note

You can encrypt your GitHub token using the TRAC secrets mechanism. Run this command to add a secret to the Docker sandbox, replacing C:\TRAC\sandbox with the path to your TRAC data directory:

docker run -it -v C:\TRAC\sandbox:/mnt/trac --entrypoint secret-tool fintrac/trac-sandbox:latest run --task add_secret github_token

You will be prompted to enter your token. Once the command completes your token will be available as a secret called github_token, and you can set up your config like this:

properties:
  repoUrl: https://github.com/org-name/repo-name
secrets:
  token: github_token

For changes to be effective you must restart the container in which TRAC is running and refresh the UI. Added or removed repo’s should then appear (or disappear) in the ‘Tenant resources’ page and be available in the (Import model) page.

If there is an issue with the .yaml file you should see an error message, for example…

select file

If you find and correct the error, remember to restart the container and refresh the UI.

Note

At this stage TRAC is only checking the contents of the schema file. Some issues, like adding a repo to which you don’t have access, will only be identified when you (Import a model).