Skip to content

User interface

The UI is connected with the core by a command in .gitlab-ci.yml. Each core version (git commit revision) works with a single UI version. If you want to use a different UI version, you need to update the core version or create a new branch of the core containing another UI version.

Setting up another UI branch

Edit the file .gitlab-ci.yml in the core repository and add the --branch option:

collect_frontend:
  image: --image--
  stage: collect
  script:
    - rm -rf user-interface
    # Change this line and add the --branch option
    - git clone --depth=1 # ...
    # This line now contains the --branch option
    - git clone --branch=feat/sui-11-rename-heartbeat-notification-request-key --depth=1 # ...

Commit the changes in a core branch and push it to the repository. Then you can either create a MR which triggers the CI pipeline (which creates a test instance) or use the Git commit ID directly in NocoDB (change the entries in image and imageTag) Check if the entry of image does not contain any punctuation marks. The image name also must not exceed a certain length (63 characters).