Skip to content

Commit 6149968

Browse files
authored
feat(cmd): Add tap and read Commands to CLI Tool (#269)
1 parent 1f43c15 commit 6149968

File tree

58 files changed

+689
-924
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+689
-924
lines changed

.github/workflows/code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ jobs:
6464
- name: Compiling
6565
run: |
6666
go install github.com/google/go-jsonnet/cmd/jsonnet@latest
67-
sh build/scripts/config/compile.sh
67+
sh .github/workflows/code_jsonnet.sh

build/scripts/config/compile.sh renamed to .github/workflows/code_jsonnet.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ for file in $files
55
do
66
# 'rev | cut | rev' converts "path/to/file.jsonnet" to "path/to/file.json"
77
f=$(echo $file | rev | cut -c 4- | rev)
8-
jsonnet $file > $f
8+
# This is run from the root of the repo.
9+
jsonnet --ext-code-file sub="./substation.libsonnet" $file > $f
910
done

build/scripts/config/format.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

cmd/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# cmd
22

3-
This directory contains applications that run Substation. Applications are organized by their deployment target (e.g., AWS Lambda) and the source of the data they process (e.g., file, http).
3+
This directory contains applications that run Substation.
44

55
## aws/lambda/
66

77
Applications that run on AWS Lambda.
88

9-
## development/
9+
## substation/
1010

11-
Applications that are used for development.
11+
The Substation CLI tool, which is used for managing configurations and local development.

cmd/development/substation-bench/main.go

Lines changed: 0 additions & 206 deletions
This file was deleted.

0 commit comments

Comments
 (0)