Skip to content

NetRecipes/bindings

Repository files navigation

Bindings

.NET Aspire + DAPR - Bindings

For a written article, refer: Bindings

Input Bindings

  • CRON
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
  name: scheduler
  namespace: default
spec:
  type: bindings.cron
  version: v1
  metadata:
  - name: schedule
    value: "@every 20s"
  - name: route
    value: /api/bindings/cron

Output Bindings

  • Local Storage
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
  name: storage
spec:
  type: bindings.localstorage
  version: v1
  metadata:
  - name: rootPath
    value: "../Storage"

About

.NET Aspire + DAPR - Bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages