Skip to content

Latest commit

 

History

History

cli

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

TrakHound CLI

Command Line Interface application to perform tasks within the TrakHound Framework.

Get Started

Windows Installation

Install DotNet CLI

The TrakHound CLI application requires the DotNet CLI to build the package project files and must be installed.

Install TrakHound-CLI

Download and run the installer from the link below:

Name Type Link
TrakHound-CLI Installer https://github.com/TrakHound/TrakHound/releases/latest

Linux Installation

Install DotNet CLI (Snap)

The TrakHound CLI application requires the DotNet CLI to build the package project files and must be installed using Snap using the command below:

sudo snap install dotnet-sdk --classic

Install trakhound-cli (Snap)

Install the latest revision of the trakhound-cli Snap package using the command below:

sudo snap install trakhound-cli --devmode

Note: Install using devmode as the trakhound-cli application requires access to the /usr/lib/dotnet-sdk/current directory. This may be changed in a later version to remove the devmode requirement.

Set the 'th' alias to point to trakhound-cli using the command below:

sudo snap alias trakhound-cli th

Packages Commands

List

List the installed packages in the Working Directory using the command below:

th packages list

Install

Install the specified package in the Working Directory using the command below:

th packages install [PACKAGE_ID]

Example

Install the package TrakHound.Entities.Api using the command below:

th packages install TrakHound.Entities.Api