Skip to content

Installation

There are multiples tools provided by TangleGuard. The Designer is crucial.

First, download the Designer from our website:

The installation process is straightforward.

You can validate your codebase against the defined rules using the Desktop App. You don’t need to install TangleGuard CLI on your system necessarily.

If you like to use the CLI Version on your computer, e.g. to use it in a Git hook, you can download it using the URL below, for via curl:

Terminal window
curl -L -o tangleguard-cli https://nbg1.your-objectstorage.com/tangleguard/releases/latest/tangleguard-cli

You can integrate the above CLI tool in your GitHub CI/CD Pipeline by using the predefined GitHub Action (https://github.com/TangleGuard/github-action).

Terminal window
name: Architecture Linting
on: [pull_request]
jobs:
validate-architecture:
runs-on: ubuntu-latest
steps:
- uses: TangleGuard/github-action@main