go.uber.org/cadence@v1.2.9/README.md (about)

     1  # Go framework for Cadence [![Build Status](https://badge.buildkite.com/e7241785444519bdfd1defc68839fd19a89c15adb3477c73f7.svg?theme=github&branch=master)](https://buildkite.com/uberopensource/cadence-go-client) [![Coverage Status](https://coveralls.io/repos/uber-go/cadence-client/badge.svg?branch=master&service=github)](https://coveralls.io/github/uber-go/cadence-client?branch=master) [![GoDoc](https://godoc.org/go.uber.org/cadence?status.svg)](https://godoc.org/go.uber.org/cadence)
     2  
     3  [Cadence](https://github.com/uber/cadence) is a distributed, scalable, durable, and highly available orchestration engine we developed at Uber Engineering to execute asynchronous long-running business logic in a scalable and resilient way.
     4  
     5  `cadence-client` is the framework for authoring workflows and activities.
     6  
     7  ## How to use
     8  
     9  Make sure you clone this repo into the correct location.
    10  
    11  ```bash
    12  git clone git@github.com:uber-go/cadence-client.git $GOPATH/src/go.uber.org/cadence
    13  ```
    14  
    15  or
    16  
    17  ```bash
    18  go get go.uber.org/cadence
    19  ```
    20  
    21  See [samples](https://github.com/uber-common/cadence-samples) to get started. 
    22  
    23  Documentation is available [here](https://cadenceworkflow.io/docs/go-client/). 
    24  You can also find the API documentation [here](https://godoc.org/go.uber.org/cadence).
    25  
    26  ## Contributing
    27  We'd love your help in making the Cadence Go client great. Please review our [contribution guidelines](CONTRIBUTING.md).
    28  
    29  ## License
    30  MIT License, please see [LICENSE](LICENSE) for details.
    31