Sidekick Vault Example - Go
This is a very simple Loop that demonstrates interacting with the Vault, which can be used to store credentials and other small pieces of sensitive information.
Developers
Install
Ensure Go is installed and working (Instructions). Go v1.14 or higher is recommended.
This project uses Go Modules. You should clone it outside of your gopath. For example, your home directory.
To install dependencies, run the following command:
make install
Build
Build will compile an executable and output it to the /build directory.
Run the following command to build:
make build
Test
This project has a test to ensure the controller text matching is working as expected.
Run the following command to execute tests:
make test