Community driven, reusable components for distributed apps
Go to file
Abhilash Singh 0cae368496 [WIP] Add memcached state store (#71)
* Add memcached state store init

* Add parsing of optional parameters

* Add tests

* Update vendor

* Add memcached to supported state store list
2019-10-31 06:21:04 -07:00
.github Add github action for CI (#59) 2019-10-28 15:39:48 -07:00
bindings Updated Kafka binding component to add SASL authentication (#77) 2019-10-29 23:40:30 -07:00
exporters Add github action for CI (#59) 2019-10-28 15:39:48 -07:00
pubsub Update Readme.md (#79) 2019-10-30 00:02:25 -07:00
secretstores Adding license header and updating to MIT license. (#26) 2019-10-09 10:58:08 -07:00
state [WIP] Add memcached state store (#71) 2019-10-31 06:21:04 -07:00
vendor [WIP] Add memcached state store (#71) 2019-10-31 06:21:04 -07: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 Add github action for CI (#59) 2019-10-28 15:39:48 -07:00
OWNERS Create OWNERS (#36) 2019-10-15 11:13:34 -07:00
Readme.md To add the build badge for github action (#69) 2019-10-28 22:02:24 -07:00
go.mod [WIP] Add memcached state store (#71) 2019-10-31 06:21:04 -07:00
go.sum [WIP] Add memcached state store (#71) 2019-10-31 06:21:04 -07:00

Readme.md

Components Contrib

Go Report Card Build Status Gitter 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