Create README.md with table of contents

This commit is contained in:
Ryan 2019-10-03 15:08:21 -07:00 committed by GitHub
parent 20c6762e51
commit 7373667732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# Dapr Samples
This repository contains a series of samples that highlight Dapr capabilities. The first sample demonstrates how we run Dapr in standalone mode, while the second highlights how we run the same application in Kubernetes. Each subsequent sample includes instructions for running both locally and in Kubernetes.
| Sample | Description |
|--------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [1.hello-world](/1.hello-world) | Demonstrates how to run Dapr locally. Highlights service invocation and state management. |
| [2.hello-kubernetes](/2.hello-kubernetes) | Demonstrates how to run Dapr in Kubernetes. Highlights service invocation and state management. |
| [3.distributed-calculator](/3.distributed-calculator) | Demonstrates a distributed calculator application that uses Dapr services to power a React web app. Highlights polyglot (multi-language) programming, service invocation and state management. |
| [4.pub-sub](4.pub-sub) | Demonstrates how we use Dapr to enable pub-sub applications. Highlights Redis as a pub-sub component. |
| [5.bindings](5.bindings) | Demonstrates how we use Dapr to create input and output bindings to other components. Highlights bindings to Kafka. |