Community driven, reusable components for distributed apps
Go to file
Yaron Schneider 86d66a065d
Create OWNERS (#36)
2019-10-15 11:13:34 -07:00
.github Add PR and issue templates (#30) 2019-10-11 10:36:13 -07:00
bindings vendor update (#34) 2019-10-14 23:49:50 -07:00
pubsub remove pubsub mock (#33) 2019-10-14 13:06:24 -07:00
secretstores Adding license header and updating to MIT license. (#26) 2019-10-09 10:58:08 -07:00
state vendor update (#34) 2019-10-14 23:49:50 -07:00
vendor vendor update (#34) 2019-10-14 23:49:50 -07:00
LICENSE Adding license header and updating to MIT license. (#26) 2019-10-09 10:58:08 -07:00
OWNERS Create OWNERS (#36) 2019-10-15 11:13:34 -07:00
Readme.md dapr name change (#21) 2019-10-02 13:21:22 -07:00
go.mod vendor update (#34) 2019-10-14 23:49:50 -07:00
go.sum Add a Kubernetes input binding. (#15) 2019-09-30 22:01:43 -07:00

Readme.md

Components Contrib

The purpose of Components Contrib is to provide open, community driven reusable components for building distributed applications. These components are being used by the Dapr project, but are separate and decoupled from it.

Using components developers can interact with bindings, state stores, messaging systems and more without caring about the underlying implementation.

Available component types:

For documentation on how components are being used in Dapr in a language/platform agnostic way, visit Dapr Docs.

Developing components

Prerequisites

  1. The Go language environment (instructions).
    • Make sure that your GOPATH and PATH are configured correctly
    export GOPATH=~/go
    export PATH=$PATH:$GOPATH/bin
    

Clone the repo

cd $GOPATH/src
mkdir -p github.com/dapr/components-contrib
git clone https://github.com/dapr/components-contrib.git github.com/dapr/components-contrib

Running tests

go test ./...