Community driven, reusable components for distributed apps
Go to file
Yaron Schneider 9c6f0e9ebf
Update Readme.md (#129)
Update with Couchbase addition.
2019-11-18 23:53:54 -08:00
.github Add github action for CI (#59) 2019-10-28 15:39:48 -07:00
bindings [WIP] Add zookeeper state store (#80) 2019-10-31 21:04:34 -07:00
exporters Add github action for CI (#59) 2019-10-28 15:39:48 -07:00
pubsub Fix azure service bus error message typo (#117) 2019-11-11 12:29:56 -08:00
secretstores secretstores: adding X-Vault-Request header (#106) 2019-11-05 14:41:49 -08:00
servicediscovery Adjust interface a bit, fix indirect lint error (#125) 2019-11-15 15:26:56 -08:00
state Update Readme.md (#129) 2019-11-18 23:53:54 -08:00
vendor Couchbase state store implementation (#100) 2019-11-18 23:13:41 -08:00
.gitignore Add github action for CI (#59) 2019-10-28 15:39:48 -07:00
.golangci.yml Set modules-download-mode to vendor (#78) 2019-10-29 22:15:11 -07:00
CONTRIBUTING.md Adding Contribution guide for components contrib repo (#38) 2019-10-15 15:41:18 -07:00
LICENSE Adding license header and updating to MIT license. (#26) 2019-10-09 10:58:08 -07:00
Makefile Fixed dependency issue (#104) 2019-11-11 12:34:56 -08:00
OWNERS Create OWNERS (#36) 2019-10-15 11:13:34 -07:00
Readme.md Add a Gitter chat badge to Readme.md (#88) 2019-10-31 14:06:50 -07:00
go.mod Couchbase state store implementation (#100) 2019-11-18 23:13:41 -08:00
go.sum Couchbase state store implementation (#100) 2019-11-18 23:13:41 -08:00

Readme.md

Components Contrib

Go Report Card Build Status Join the chat at https://gitter.im/Dapr/components-contrib License: MIT

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

make test

Running linting

make lint