Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cmd): Add tap and read Commands to CLI Tool #269

Merged
merged 12 commits into from
Oct 28, 2024
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