Skip to content

Commit

Permalink
feat(cmd): Add tap and read Commands to CLI Tool (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshlbrd authored Oct 28, 2024
1 parent 1f43c15 commit 6149968
Show file tree
Hide file tree
Showing 58 changed files with 689 additions and 924 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
- name: Compiling
run: |
go install github.com/google/go-jsonnet/cmd/jsonnet@latest
sh build/scripts/config/compile.sh
sh .github/workflows/code_jsonnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ for file in $files
do
# 'rev | cut | rev' converts "path/to/file.jsonnet" to "path/to/file.json"
f=$(echo $file | rev | cut -c 4- | rev)
jsonnet $file > $f
# This is run from the root of the repo.
jsonnet --ext-code-file sub="./substation.libsonnet" $file > $f
done
7 changes: 0 additions & 7 deletions build/scripts/config/format.sh

This file was deleted.

6 changes: 3 additions & 3 deletions cmd/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# cmd

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).
This directory contains applications that run Substation.

## aws/lambda/

Applications that run on AWS Lambda.

## development/
## substation/

Applications that are used for development.
The Substation CLI tool, which is used for managing configurations and local development.
206 changes: 0 additions & 206 deletions cmd/development/substation-bench/main.go

This file was deleted.

Loading

0 comments on commit 6149968

Please sign in to comment.