github.com/GoogleCloudPlatform/testgrid@v0.0.174/config/print/README.md (about)

     1  # Config Printer
     2  
     3  The config printer is a debugging utility that prints a TestGrid configuration in a
     4  human-readable format. It will read from the local filesystem or Google Cloud Storage.
     5  
     6  ## Usage and installation
     7  
     8  The tool can be built and run with Bazel.
     9  
    10  ```sh
    11  bazel run //config/print -- gs://example/config
    12  ```
    13  
    14  The tool can be installed via go install. You may want to rename the
    15  resulting binary so it doesn't shadow your shell's `print` utility.
    16  
    17  ```sh
    18  go install ./config/print
    19  print gs://example/config
    20  ```