Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,8 @@ version

!src/run/logs
!test/run/logs

local/

# Mac files
.DS_Store
34 changes: 33 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ $ npm install -g chs-dev
$ chs-dev COMMAND
running command...
$ chs-dev (--version)
chs-dev/2.0.0 darwin-arm64 node-v20.18.0
chs-dev/2.0.0 darwin-arm64 node-v23.7.0
$ chs-dev --help [COMMAND]
USAGE
$ chs-dev COMMAND
Expand All @@ -183,6 +183,8 @@ USAGE
* [`chs-dev exclusions remove SERVICE`](#chs-dev-exclusions-remove-service)
* [`chs-dev help [COMMAND]`](#chs-dev-help-command)
* [`chs-dev include SERVICE`](#chs-dev-include-service)
* [`chs-dev information service SERVICES`](#chs-dev-information-service-services)
* [`chs-dev information system`](#chs-dev-information-system)
* [`chs-dev logs [SERVICENAME]`](#chs-dev-logs-servicename)
* [`chs-dev modules available`](#chs-dev-modules-available)
* [`chs-dev modules disable MODULES`](#chs-dev-modules-disable-modules)
Expand Down Expand Up @@ -411,6 +413,36 @@ ALIASES
$ chs-dev include
```

## `chs-dev information service SERVICES`

Generates a dependency diagram / tree for the specified service(s)

```
USAGE
$ chs-dev information service SERVICES... -t <value>

ARGUMENTS
SERVICES... names of services to be graphed

FLAGS
-t, --type=<value> (required) diagram / tree

DESCRIPTION
Generates a dependency diagram / tree for the specified service(s)
```

## `chs-dev information system`

Generates a System dependency Diagram

```
USAGE
$ chs-dev information system

DESCRIPTION
Generates a System dependency Diagram
```

## `chs-dev logs [SERVICENAME]`

Outputs the logs for services and compose logs (i.e. logs from 'up' and 'down' commands)
Expand Down
Loading