Disclaimer: This is an internal library and should not be relied upon for production uses by non-Toznynians
Contains golang implementations of http clients for use by golang applications that need to interface with e3db services.
-
Go 1.11+ must be installed, follow these instructions if not installed in your development environment.
-
Tozny Platform checked out locally
-
TOZNY_PLATFORM_DIR
environment set pointing to the repo ☝️ -
OR: Alternate configuration values in
.env
for the Tozny services and clients of choice
-
Running:
make build
will lint and build the projects source code.
Project tests run against an instance of Tozny Platform.
To run Tozny Platform services
make up
After Tozny Platform is up, execute the tests by running:
make test
To Run tests matching the name in 'method' form:
make testone method=TestCreateCustomer
After testing is done, you can stop Tozny Platform services by running
make down
From a go package
package main
import (
"context"
"github.com/tozny/e3db-clients-go"
"github.com/tozny/e3db-clients-go/hookClient"
)
func main() {
config := e3dbClients.ClientConfig{
APIKey: "E3DBAPIKEYID",
APISecret: "E3DBAPIKEYSECRET",
Host: "https://api.e3db.com",
}
client := hookClient.New(ValidClientConfig, config.Host)
createHookRequest := hookClient.CreateHookRequest{
WebhookURL: "https://en8781lpip6xb.x.pipedream.net/",
Triggers: []hookClient.HookTrigger{
hookClient.HookTrigger{
Enabled: true,
APIEvent: "authorizer_added",
},
},
}
ctx := context.TODO()
response, err := client.CreateHook(ctx, createHookRequest)
if err != nil {
t.Errorf("Error %s calling CreateHook with %+v\n", err, createHookRequest)
}
}
Follow semantic versioning when releasing new versions of this library.
Releasing involves tagging a commit in this repository, and pushing the tag. Tagging and releasing of new versions should only be done from the master branch after an approved Pull Request has been merged, or on the branch of an approved Pull Request.
To publish a new version, run
git tag vX.Y.Z
git push origin vX.Y.Z
To consume published updates from other repositories that depends on this module run
go get github.com/tozny/e3db-clients-go@vX.Y.Z
and the go get
tool will fetch the published artifact and update that modules go.mod
andgo.sum
files with the updated dependency.