├── .devcontainer ├── devcontainer.json └── on-create.sh ├── .github └── holopin.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── batch-file-processing ├── .vscode │ ├── launch.json │ └── tasks.json ├── README.md ├── batchGenerator │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ ├── package-lock.json │ ├── package.json │ └── services │ │ ├── csvService.js │ │ └── fakeDataService.js ├── batchProcessor │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ ├── config.json │ ├── ordersBuilder.js │ ├── package-lock.json │ ├── package.json │ └── routes │ │ └── subscribe.js ├── batchReceiver │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ ├── config.json │ ├── package-lock.json │ ├── package.json │ └── routes │ │ └── blobAddedHandler.js ├── components │ ├── blob-storage.yaml │ ├── cosmosdb-orders.yaml │ ├── messagebus.yaml │ └── statestore.yaml ├── deploy │ ├── batch-generator.yaml │ ├── batch-processor-keda.yaml │ ├── batch-receiver.yaml │ ├── blob-storage.yaml │ ├── certificates.yaml │ ├── cluster-issuer.yaml │ ├── cosmosdb-orders.yaml │ ├── dapr-tracing-exporter.yaml │ ├── dapr-tracing.yaml │ ├── ingress.yaml │ ├── localforwarder-deployment.yaml │ ├── messagebus.yaml │ └── statestore.yaml ├── deployment.md ├── images │ ├── batch-processor-logs.png │ ├── batch-processor-scaled.png │ ├── csv-files-blob-storage.png │ ├── deployment.gif │ ├── end-to-end-transaction.png │ ├── generator-and-receiver-running.png │ ├── observing-sample.gif │ ├── orders-in-cosmosdb-portal.png │ ├── orders-in-cosmosdb.png │ ├── service-bus-messages.png │ ├── solution-diagram-generic.drawio │ ├── solution-diagram-generic.png │ ├── solution-diagram-v1.png │ ├── solution-diagram-v2.drawio │ └── solution-diagram-v2.png ├── observing-sample.md ├── scripts-bash │ ├── build_generator.sh │ ├── build_processor.sh │ ├── build_receiver.sh │ ├── deploy_NGINX.sh │ ├── deploy_aks.sh │ ├── deploy_blob_subscription.sh │ ├── deploy_cert_manager.sh │ ├── deploy_cosmosdb.sh │ ├── deploy_dapr_aks.sh │ ├── deploy_keda.sh │ ├── deploy_redis.sh │ ├── deploy_servicebus.sh │ ├── deploy_storage.sh │ └── deploy_tracing.sh └── scripts │ ├── build_generator.ps1 │ ├── build_processor.ps1 │ ├── build_receiver.ps1 │ ├── deploy_NGINX.ps1 │ ├── deploy_aks.ps1 │ ├── deploy_blob_subscription.ps1 │ ├── deploy_cert_manager.ps1 │ ├── deploy_cosmosdb.ps1 │ ├── deploy_dapr_aks.ps1 │ ├── deploy_keda.ps1 │ ├── deploy_redis.ps1 │ ├── deploy_servicebus.ps1 │ ├── deploy_storage.ps1 │ ├── deploy_tracing.ps1 │ └── sendBatch.ps1 ├── bindings-knative-eventing ├── README.md ├── deploy │ ├── dapr │ │ ├── kafka-bindings-topic-a.yaml │ │ ├── kafka-bindings-topic-b.yaml │ │ ├── kafka-bindings-topic-c.yaml │ │ └── ksvc-react-form.yaml │ └── knative │ │ ├── kafka-ksvc-event-display-a.yaml │ │ ├── kafka-ksvc-event-display-b.yaml │ │ ├── kafka-ksvc-event-display-c.yaml │ │ ├── kafka-source-a.yaml │ │ ├── kafka-source-b.yaml │ │ ├── kafka-source-c.yaml │ │ ├── kafka-topic-a.yaml │ │ ├── kafka-topic-b.yaml │ │ └── kafka-topic-c.yaml ├── img │ ├── diagram.png │ └── react-form.png └── react-form │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── client │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ └── manifest.json │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── MessageForm.js │ │ ├── Nav.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ └── serviceWorker.js │ └── yarn.lock │ ├── package.json │ └── server.js ├── commercetools-graphql-sample ├── .DS_Store ├── README.md ├── components │ └── commercetools_bindings.yaml ├── deploy │ ├── commercetools_bindings.yaml │ └── python.yaml ├── img │ └── Bindings_Standalone.png ├── makefile └── pythonapp │ ├── Dockerfile │ └── app.py ├── dapr-aks-workload-identity-federation ├── README.md ├── app │ ├── .gitignore │ ├── Program.cs │ └── Program.csproj └── deploy │ └── app.yaml ├── dapr-apim-integration ├── .gitignore ├── README.md ├── apim │ ├── api.yaml │ ├── policy-all.json │ ├── policy-echo.json │ ├── policy-message.json │ └── policy-save.json ├── img │ ├── backend-policy.png │ ├── dapr-building-blocks.png │ └── overview-diagram.png ├── k8s │ ├── binding.yaml │ ├── echo-service.yaml │ ├── event-subscriber.yaml │ ├── gateway.yaml │ └── pubsub.yaml └── src │ ├── grpc-echo-service │ ├── Dockerfile │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go │ └── http-event-subscriber │ ├── Dockerfile │ ├── Makefile │ ├── config │ └── pubsub.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── dapr-argocd ├── README.md ├── app │ ├── node │ │ └── node.yaml │ └── python │ │ └── python.yaml └── gitops │ ├── dapr-components │ ├── application.yaml │ └── redis.yaml │ ├── dapr │ └── application.yaml │ └── redis │ └── application.yaml ├── dapr-distributed-calendar ├── README.md ├── components │ ├── pubsub.yaml │ ├── sendgrid.yaml │ └── statestore.yaml ├── go │ ├── go_events │ └── go_events.go ├── node_controller.js ├── node_modules │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── encoding │ │ ├── .prettierrc.js │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── encoding.js │ │ ├── node_modules │ │ │ └── iconv-lite │ │ │ │ ├── .github │ │ │ │ └── dependabot.yml │ │ │ │ ├── Changelog.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ ├── utf32.js │ │ │ │ └── utf7.js │ │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── test │ │ │ └── test.js │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── is-stream │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── isomorphic-fetch │ │ ├── .editorconfig │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── fetch-bower.js │ │ ├── fetch-npm-browserify.js │ │ ├── fetch-npm-node.js │ │ ├── package.json │ │ └── test │ │ │ └── api.test.js │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── node-fetch │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── ERROR-HANDLING.md │ │ ├── LICENSE.md │ │ ├── LIMITS.md │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── body.js │ │ │ ├── fetch-error.js │ │ │ ├── headers.js │ │ │ ├── index.js │ │ │ ├── request.js │ │ │ └── response.js │ │ ├── package.json │ │ └── test │ │ │ ├── dummy.txt │ │ │ ├── server.js │ │ │ └── test.js │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── toidentifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── whatwg-fetch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ ├── fetch.umd.js │ │ └── fetch.umd.js.flow │ │ ├── fetch.js │ │ ├── fetch.js.flow │ │ └── package.json ├── package-lock.json ├── package.json └── python │ └── messages.py ├── dapr-eks-podidentity ├── .gitignore ├── README.md ├── app │ ├── Dockerfile │ ├── go.mod │ └── main.go ├── components │ └── aws-secretstore.yaml ├── deploy │ └── app.yaml └── k8s-config │ └── service-account.yaml ├── functions-and-keda ├── README.md ├── deploy │ ├── csharp-function-subscriber.yaml │ ├── javascript-function-subscriber.yaml │ ├── python-function-publisher.yaml │ └── redis.yaml ├── setup.ps1 ├── src │ ├── csharp-function-subscriber │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── Dockerfile │ │ ├── MyTopic.cs │ │ ├── Startup.cs │ │ ├── Subscribe.cs │ │ ├── csharp-subscribe.csproj │ │ └── host.json │ ├── javascript-function-subscriber │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── extensions.json │ │ ├── Dockerfile │ │ ├── MyTopic │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── Subscribe │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── host.json │ │ └── package.json │ └── python-function-publisher │ │ ├── .dockerignore │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── Dockerfile │ │ ├── QueueTrigger │ │ ├── __init__.py │ │ └── function.json │ │ ├── host.json │ │ └── requirements.txt └── utils │ └── base-templates │ ├── csharp-function-subscriber-base.yaml │ ├── helm-rbac.yaml │ ├── javascript-function-subscriber-base.yaml │ ├── python-function-publisher-base.yaml │ └── redis-base.yaml ├── hello-dapr-slim ├── .gitignore ├── README.md ├── app.js ├── img │ ├── Architecture_DiagramA.png │ └── postman1.png ├── package-lock.json ├── package.json ├── sample.http └── sample.json ├── hello-docker-compose ├── .gitignore ├── README.md ├── components │ ├── pubsub.yaml │ └── statestore.yaml ├── docker-compose.yml ├── makefile ├── node │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ └── package.json └── python │ ├── .gitignore │ ├── Dockerfile │ └── app.py ├── hello-service-fabric ├── README.md ├── daprsfpkg │ ├── ApplicationManifest.xml │ └── MyService │ │ ├── CodeDapr │ │ └── components │ │ │ └── subscription.yaml │ │ ├── CodeUserApp │ │ ├── app.js │ │ ├── package-lock.json │ │ └── package.json │ │ └── ServiceManifest.xml ├── img │ └── Architecture_Diagram.png └── requests.http ├── hello-typescript ├── .gitignore ├── .vscode │ └── tasks.json ├── README.md ├── app.ts ├── img │ ├── Architecture_Diagram.png │ └── postman1.jpg ├── package-lock.json ├── package.json ├── sample.json ├── sample_get.http ├── sample_post.http └── tsconfig.json ├── hello-wasm ├── README.md ├── components │ └── wasm.yaml ├── config.yaml └── wasm │ ├── Makefile │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main.wasm ├── knative-distributed-calculator ├── README.md └── deploy │ ├── appconfig.yaml │ ├── dotnet-subtractor.yaml │ ├── go-adder.yaml │ ├── node-divider.yaml │ ├── python-multiplier.yaml │ ├── react-calculator.yaml │ └── redis.yaml ├── middleware-oauth-google ├── README.md ├── deploy │ ├── echoapp.yaml │ ├── ingress.yaml │ ├── oauth2.yaml │ └── pipeline.yaml ├── echoapp │ ├── Dockerfile │ ├── app.js │ └── package.json ├── img │ ├── Architecture_Diagram.png │ ├── google-console.png │ ├── google-dummy.png │ └── webpage.png └── makefile ├── middleware-oauth-microsoftazure ├── README.md ├── deploy │ ├── msgraphapp.yaml │ ├── msgraphpipeline.yaml │ └── oauth2clientcredentials.yaml ├── img │ ├── aad_app_registration1.png │ ├── aad_app_registration10.png │ ├── aad_app_registration2.png │ ├── aad_app_registration3.png │ ├── aad_app_registration4.png │ ├── aad_app_registration5.png │ ├── aad_app_registration6.png │ ├── aad_app_registration7.png │ ├── aad_app_registration8.png │ ├── aad_app_registration9.png │ └── architecture_diagram.png ├── makefile └── msgraphapp │ ├── Dockerfile │ ├── app.js │ └── package.json ├── multi-app-workflows ├── E-CommerceArchitecture.png ├── README.md ├── dapr.yaml ├── go │ └── order-orchestrator │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── models.go ├── java │ ├── ai-recommendation-service │ │ ├── dapr.yaml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── dapr │ │ │ └── samples │ │ │ └── workflows │ │ │ ├── AIRecommendationServiceApplication.java │ │ │ └── activities │ │ │ └── GeneratePersonalizedRecommendationsActivity.java │ ├── inventory-service │ │ ├── dapr.yaml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── dapr │ │ │ └── samples │ │ │ └── workflows │ │ │ ├── InventoryServiceApplication.java │ │ │ └── activities │ │ │ └── ReserveInventoryActivity.java │ └── payment-service │ │ ├── dapr.yaml │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── dapr │ │ └── samples │ │ └── workflows │ │ ├── PaymentServiceApplication.java │ │ └── activities │ │ └── ValidatePaymentMethodActivity.java ├── makefile └── resources │ └── statestore.yaml ├── outbox ├── .vscode │ ├── launch.json │ └── tasks.json ├── README.md ├── dapr.yaml ├── makefile ├── order-notification │ ├── Program.cs │ ├── Program.csproj │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── order-processor │ ├── Program.cs │ └── Program.csproj └── resources │ ├── pubsub.yaml │ ├── resiliency.yaml │ ├── statestore.yaml │ └── statestoresql.yaml ├── pluggable-components-dotnet-template ├── .gitignore ├── Component.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Protos │ └── dapr │ │ └── proto │ │ └── components │ │ └── v1 │ │ ├── bindings.proto │ │ ├── common.proto │ │ ├── pubsub.proto │ │ ├── secretstore.proto │ │ └── state.proto ├── README.md ├── Services │ └── Services.cs ├── appsettings.Development.json └── appsettings.json ├── pub-sub-routing ├── .gitignore ├── Dockerfile ├── README.md ├── app.js ├── components │ ├── in-memory.yaml │ └── subscription.yaml ├── config.yaml ├── messages │ ├── gadget.json │ ├── thingamajig.json │ └── widget.json └── package.json ├── pubsub-raw-payload ├── .gitignore ├── README.md ├── components │ ├── pubsub.yaml │ └── subscription.yaml ├── docker-compose.yml ├── pubsub-raw-payload.sln └── src │ ├── Publisher │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Publisher.csproj │ ├── Shared │ ├── Message.cs │ └── Shared.csproj │ └── Subscriber │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ └── Subscriber.csproj ├── reactive-dapr-with-drasi ├── Makefile ├── README.md ├── demo │ ├── demo-catalogue-service.sh │ ├── demo-dashboard-service.sh │ ├── demo-notifications-service.sh │ └── monitor-notifications.sh ├── drasi │ ├── queries │ │ ├── at-risk-orders.yaml │ │ ├── critical-stock-event.yaml │ │ ├── delayed-gold-orders.yaml │ │ ├── low-stock-event.yaml │ │ └── product-catalogue.yaml │ ├── reactions │ │ ├── post-dapr-pubsub.yaml │ │ ├── signalr-reaction.yaml │ │ └── sync-dapr-statestore.yaml │ └── sources │ │ ├── customers.yaml │ │ ├── orders.yaml │ │ ├── products.yaml │ │ └── reviews.yaml ├── images │ ├── 01-architectire-overview.png │ ├── 02-ecommerce-scenario.png │ ├── 03-derived-data-challenge.png │ ├── 04-dashboard-challenge.png │ ├── 05-eventing-challenge.png │ ├── 06-drasi-overview.png │ ├── 07-drasi-loves-dapr.png │ ├── 08-product-catalog-query.png │ ├── 09-dashboard-queries.png │ ├── 10-inventory-alerts.png │ └── 11-benefits-recap.png └── services │ ├── catalogue │ ├── Dockerfile │ ├── code │ │ ├── dapr_client.py │ │ ├── main.py │ │ └── models.py │ ├── docker-entrypoint.sh │ ├── index.html │ ├── k8s │ │ ├── dapr │ │ │ ├── statestore-drasi.yaml │ │ │ └── statestore.yaml │ │ ├── deployment.yaml │ │ └── postgres │ │ │ └── postgres.yaml │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.js │ ├── requirements.txt │ ├── setup │ │ └── test-apis.sh │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ProductCard.tsx │ │ │ ├── ProductDetail.tsx │ │ │ ├── ProductList.tsx │ │ │ └── StarRating.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ ├── services │ │ │ └── api.ts │ │ ├── types.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ ├── common │ └── setup │ │ └── common-utils.sh │ ├── customers │ ├── Dockerfile │ ├── code │ │ ├── dapr_client.py │ │ ├── main.py │ │ └── models.py │ ├── k8s │ │ ├── dapr │ │ │ └── statestore.yaml │ │ ├── deployment.yaml │ │ └── postgres │ │ │ └── postgres.yaml │ ├── requirements.txt │ └── setup │ │ ├── load-initial-data.sh │ │ └── test-apis.sh │ ├── dashboard │ ├── .gitignore │ ├── Dockerfile │ ├── docker-entrypoint.sh │ ├── index.html │ ├── k8s │ │ ├── deployment.yaml │ │ └── signalr-ingress.yaml │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ConnectionStatus.tsx │ │ │ ├── Dashboard.tsx │ │ │ ├── GoldCustomerDelaysView.tsx │ │ │ └── StockRiskView.tsx │ │ ├── config.ts │ │ ├── index.css │ │ ├── main.tsx │ │ ├── services │ │ │ └── api.ts │ │ ├── types.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ ├── notifications │ ├── Dockerfile │ ├── code │ │ ├── main.py │ │ └── models.py │ ├── k8s │ │ ├── dapr │ │ │ ├── pubsub-drasi.yaml │ │ │ └── pubsub.yaml │ │ ├── deployment.yaml │ │ └── redis │ │ │ └── redis.yaml │ ├── requirements.txt │ ├── setup │ │ ├── test-apis.sh │ │ └── test-ui.sh │ └── ui │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ConnectionStatus.tsx │ │ │ ├── EmailAnimation.tsx │ │ │ ├── EventCard.tsx │ │ │ └── StatsCard.tsx │ │ ├── hooks │ │ │ └── useWebSocket.ts │ │ ├── index.css │ │ ├── main.tsx │ │ ├── types.ts │ │ └── vite-env.d.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── orders │ ├── Dockerfile │ ├── code │ │ ├── dapr_client.py │ │ ├── main.py │ │ └── models.py │ ├── k8s │ │ ├── dapr │ │ │ └── statestore.yaml │ │ ├── deployment.yaml │ │ └── postgres │ │ │ └── postgres.yaml │ ├── requirements.txt │ └── setup │ │ ├── load-initial-data.sh │ │ └── test-apis.sh │ ├── products │ ├── Dockerfile │ ├── code │ │ ├── dapr_client.py │ │ ├── main.py │ │ └── models.py │ ├── k8s │ │ ├── dapr │ │ │ └── statestore.yaml │ │ ├── deployment.yaml │ │ └── postgres │ │ │ └── postgres.yaml │ ├── requirements.txt │ └── setup │ │ ├── load-initial-data.sh │ │ └── test-apis.sh │ └── reviews │ ├── Dockerfile │ ├── code │ ├── dapr_client.py │ ├── main.py │ └── models.py │ ├── k8s │ ├── dapr │ │ └── statestore.yaml │ ├── deployment.yaml │ └── postgres │ │ └── postgres.yaml │ ├── requirements.txt │ └── setup │ ├── load-initial-data.sh │ └── test-apis.sh ├── read-kubernetes-events ├── README.md ├── deploy │ ├── kubernetes.yaml │ └── node.yaml ├── makefile └── node │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ ├── package-lock.json │ └── package.json ├── twitter-sentiment-processor ├── .gitignore ├── README.md ├── demos │ ├── components │ │ ├── pubsub.yaml │ │ ├── statestore.yaml │ │ └── twitter.yaml │ ├── demo1 │ │ ├── provider-net │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── Producer.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── Twitter.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── run.ps1 │ │ │ └── run.sh │ │ └── provider │ │ │ ├── app.js │ │ │ ├── logger.js │ │ │ ├── package.json │ │ │ ├── run.ps1 │ │ │ └── run.sh │ ├── demo2 │ │ ├── config.yaml │ │ ├── iac │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ └── twitterdemo2.bicep │ │ ├── processor │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── logger.js │ │ │ ├── package.json │ │ │ ├── publish.ps1 │ │ │ ├── publish.sh │ │ │ ├── run.ps1 │ │ │ └── run.sh │ │ ├── provider │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── logger.js │ │ │ ├── package.json │ │ │ ├── publish.ps1 │ │ │ ├── publish.sh │ │ │ ├── run.ps1 │ │ │ └── run.sh │ │ ├── setup.ps1 │ │ ├── setup.sh │ │ └── viewer │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── handler.go │ │ │ ├── main.go │ │ │ ├── publish.ps1 │ │ │ ├── publish.sh │ │ │ ├── resource │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── app.css │ │ │ │ ├── img │ │ │ │ │ ├── dapr.svg │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── negative.svg │ │ │ │ │ ├── neutral.svg │ │ │ │ │ ├── positive.svg │ │ │ │ │ └── tw.svg │ │ │ │ └── js │ │ │ │ │ └── app.js │ │ │ └── template │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ └── index.html │ │ │ ├── run.ps1 │ │ │ └── run.sh │ ├── demo3 │ │ ├── demochart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── demo-bus-secret.yaml │ │ │ │ ├── demo-processor-secret.yaml │ │ │ │ ├── demo-state-secret.yaml │ │ │ │ ├── processor.yaml │ │ │ │ ├── provider.yaml │ │ │ │ ├── pubsub.yaml │ │ │ │ ├── statestore.yaml │ │ │ │ ├── tracing.yaml │ │ │ │ ├── viewer.yaml │ │ │ │ └── zipkin.yaml │ │ │ └── values.yaml │ │ ├── iac │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ └── twitterDemo3.bicep │ │ ├── setup.ps1 │ │ └── setup.sh │ ├── javademo │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── deploy │ │ │ ├── binding.yaml │ │ │ ├── processor.yaml │ │ │ ├── provider.yaml │ │ │ ├── pubsub.yaml │ │ │ ├── statestore.yaml │ │ │ └── viewer.yaml │ │ ├── overview.png │ │ ├── processor │ │ │ ├── Dockerfile │ │ │ ├── components │ │ │ │ └── secretstore.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── dapr │ │ │ │ │ └── apps │ │ │ │ │ └── twitter │ │ │ │ │ └── processor │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── ApplicationController.java │ │ │ │ │ ├── DaprConfig.java │ │ │ │ │ └── model │ │ │ │ │ ├── Sentiment.java │ │ │ │ │ └── Text.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── provider │ │ │ ├── Dockerfile │ │ │ ├── components │ │ │ │ ├── binding.yaml │ │ │ │ ├── pubsub.yaml │ │ │ │ ├── secretstore.yaml │ │ │ │ └── statestore.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── dapr │ │ │ │ │ └── apps │ │ │ │ │ └── twitter │ │ │ │ │ └── provider │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── ApplicationController.java │ │ │ │ │ ├── DaprConfig.java │ │ │ │ │ └── model │ │ │ │ │ ├── AnalyzedTweet.java │ │ │ │ │ ├── Sentiment.java │ │ │ │ │ ├── Tweet.java │ │ │ │ │ └── TwitterUser.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── ui.png │ │ └── viewer │ │ │ ├── Dockerfile │ │ │ ├── components │ │ │ └── pubsub.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── dapr │ │ │ │ └── apps │ │ │ │ └── twitter │ │ │ │ └── viewer │ │ │ │ ├── Application.java │ │ │ │ ├── ApplicationController.java │ │ │ │ ├── SocketTextHandler.java │ │ │ │ ├── WebSocketConfig.java │ │ │ │ └── WebSocketPubSub.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── static │ │ │ ├── css │ │ │ └── app.css │ │ │ ├── img │ │ │ ├── dapr.svg │ │ │ ├── favicon.ico │ │ │ ├── negative.svg │ │ │ ├── neutral.svg │ │ │ ├── positive.svg │ │ │ ├── tw.svg │ │ │ └── unknown.svg │ │ │ ├── index.html │ │ │ └── js │ │ │ └── app.js │ └── py-demo │ │ ├── README.md │ │ ├── local_secrets.json │ │ ├── overview.png │ │ ├── processor │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── components │ │ │ └── secretstore.yaml │ │ ├── processor.py │ │ └── requirements.txt │ │ ├── provider │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── components │ │ │ ├── pubsub.yaml │ │ │ ├── secretstore.yaml │ │ │ ├── statestore.yaml │ │ │ └── twitter_binding.yaml │ │ ├── provider.py │ │ └── requirements.txt │ │ ├── ui.png │ │ └── viewer │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── components │ │ └── pubsub.yaml │ │ ├── requirements.txt │ │ ├── static │ │ ├── css │ │ │ └── app.css │ │ ├── img │ │ │ ├── dapr.svg │ │ │ ├── favicon.ico │ │ │ ├── negative.svg │ │ │ ├── neutral.svg │ │ │ ├── positive.svg │ │ │ ├── tw.svg │ │ │ └── unknown.svg │ │ └── js │ │ │ └── app.js │ │ ├── templates │ │ └── index.html │ │ └── viewer-server.py └── images │ ├── log.png │ ├── metric.png │ ├── overview.png │ ├── pubsub.png │ ├── redis.png │ ├── state.png │ ├── twitter_keys.png │ ├── ui.png │ └── zipkin.png ├── workflow-external-invocation ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── CheckoutService │ ├── Activities │ │ ├── CheckInventoryActivity.cs │ │ ├── NotifyActivity.cs │ │ ├── ProcessPaymentActivity.cs │ │ ├── RefundPaymentActivity.cs │ │ └── UpdateInventoryActivity.cs │ ├── CheckoutServiceWorkflowSample.csproj │ ├── Controllers │ │ └── InventoryController.cs │ ├── Models.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Workflows │ │ └── CheckoutWorkflow.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── DemoArch.svg ├── README.md ├── Resources │ ├── httpEndpoint.yaml │ ├── state-inventory.yaml │ └── state-workstream.yaml └── test.rest └── workflow-orderprocessing-python ├── .vscode └── settings.json ├── README.md ├── components ├── pubsub.yaml └── statestore.yaml ├── dapr.yaml ├── demo.http ├── services ├── inventory │ ├── app.py │ └── requirements.txt ├── notifications │ ├── app.py │ ├── requirements.txt │ ├── static │ │ ├── css │ │ │ └── app.css │ │ ├── img │ │ │ ├── dapr.svg │ │ │ └── favicon.ico │ │ └── js │ │ │ └── app.js │ └── templates │ │ └── index.html ├── orderprocessing │ ├── app.py │ └── requirements.txt ├── payments │ ├── app.py │ └── requirements.txt └── shipping │ ├── app.py │ └── requirements.txt ├── zipkin-workflow-failure.png └── zipkin-workflow-success.png /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/on-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/.devcontainer/on-create.sh -------------------------------------------------------------------------------- /.github/holopin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/.github/holopin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/README.md -------------------------------------------------------------------------------- /batch-file-processing/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/.vscode/launch.json -------------------------------------------------------------------------------- /batch-file-processing/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/.vscode/tasks.json -------------------------------------------------------------------------------- /batch-file-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/README.md -------------------------------------------------------------------------------- /batch-file-processing/batchGenerator/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .dockerfiles -------------------------------------------------------------------------------- /batch-file-processing/batchGenerator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchGenerator/Dockerfile -------------------------------------------------------------------------------- /batch-file-processing/batchGenerator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchGenerator/app.js -------------------------------------------------------------------------------- /batch-file-processing/batchGenerator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchGenerator/package-lock.json -------------------------------------------------------------------------------- /batch-file-processing/batchGenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchGenerator/package.json -------------------------------------------------------------------------------- /batch-file-processing/batchGenerator/services/csvService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchGenerator/services/csvService.js -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/.gitignore -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/Dockerfile -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/app.js -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/config.json -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/ordersBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/ordersBuilder.js -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/package-lock.json -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/package.json -------------------------------------------------------------------------------- /batch-file-processing/batchProcessor/routes/subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchProcessor/routes/subscribe.js -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .dockerfiles -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchReceiver/Dockerfile -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchReceiver/app.js -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchReceiver/config.json -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchReceiver/package-lock.json -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchReceiver/package.json -------------------------------------------------------------------------------- /batch-file-processing/batchReceiver/routes/blobAddedHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/batchReceiver/routes/blobAddedHandler.js -------------------------------------------------------------------------------- /batch-file-processing/components/blob-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/components/blob-storage.yaml -------------------------------------------------------------------------------- /batch-file-processing/components/cosmosdb-orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/components/cosmosdb-orders.yaml -------------------------------------------------------------------------------- /batch-file-processing/components/messagebus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/components/messagebus.yaml -------------------------------------------------------------------------------- /batch-file-processing/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/components/statestore.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/batch-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/batch-generator.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/batch-processor-keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/batch-processor-keda.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/batch-receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/batch-receiver.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/blob-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/blob-storage.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/certificates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/certificates.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/cluster-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/cluster-issuer.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/cosmosdb-orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/cosmosdb-orders.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/dapr-tracing-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/dapr-tracing-exporter.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/dapr-tracing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/dapr-tracing.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/ingress.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/localforwarder-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/localforwarder-deployment.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/messagebus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/messagebus.yaml -------------------------------------------------------------------------------- /batch-file-processing/deploy/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deploy/statestore.yaml -------------------------------------------------------------------------------- /batch-file-processing/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/deployment.md -------------------------------------------------------------------------------- /batch-file-processing/images/batch-processor-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/batch-processor-logs.png -------------------------------------------------------------------------------- /batch-file-processing/images/batch-processor-scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/batch-processor-scaled.png -------------------------------------------------------------------------------- /batch-file-processing/images/csv-files-blob-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/csv-files-blob-storage.png -------------------------------------------------------------------------------- /batch-file-processing/images/deployment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/deployment.gif -------------------------------------------------------------------------------- /batch-file-processing/images/end-to-end-transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/end-to-end-transaction.png -------------------------------------------------------------------------------- /batch-file-processing/images/observing-sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/observing-sample.gif -------------------------------------------------------------------------------- /batch-file-processing/images/orders-in-cosmosdb-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/orders-in-cosmosdb-portal.png -------------------------------------------------------------------------------- /batch-file-processing/images/orders-in-cosmosdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/orders-in-cosmosdb.png -------------------------------------------------------------------------------- /batch-file-processing/images/service-bus-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/service-bus-messages.png -------------------------------------------------------------------------------- /batch-file-processing/images/solution-diagram-generic.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/solution-diagram-generic.drawio -------------------------------------------------------------------------------- /batch-file-processing/images/solution-diagram-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/solution-diagram-generic.png -------------------------------------------------------------------------------- /batch-file-processing/images/solution-diagram-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/solution-diagram-v1.png -------------------------------------------------------------------------------- /batch-file-processing/images/solution-diagram-v2.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/solution-diagram-v2.drawio -------------------------------------------------------------------------------- /batch-file-processing/images/solution-diagram-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/images/solution-diagram-v2.png -------------------------------------------------------------------------------- /batch-file-processing/observing-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/observing-sample.md -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/build_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/build_generator.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/build_processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/build_processor.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/build_receiver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/build_receiver.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_NGINX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_NGINX.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_aks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_aks.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_blob_subscription.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_blob_subscription.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_cert_manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_cert_manager.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_cosmosdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_cosmosdb.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_dapr_aks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_dapr_aks.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_keda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_keda.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_redis.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_servicebus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_servicebus.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_storage.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts-bash/deploy_tracing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts-bash/deploy_tracing.sh -------------------------------------------------------------------------------- /batch-file-processing/scripts/build_generator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/build_generator.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/build_processor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/build_processor.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/build_receiver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/build_receiver.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_NGINX.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_NGINX.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_aks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_aks.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_blob_subscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_blob_subscription.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_cert_manager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_cert_manager.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_cosmosdb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_cosmosdb.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_dapr_aks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_dapr_aks.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_keda.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_keda.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_redis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_redis.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_servicebus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_servicebus.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_storage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_storage.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/deploy_tracing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/deploy_tracing.ps1 -------------------------------------------------------------------------------- /batch-file-processing/scripts/sendBatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/batch-file-processing/scripts/sendBatch.ps1 -------------------------------------------------------------------------------- /bindings-knative-eventing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/README.md -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/dapr/ksvc-react-form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/dapr/ksvc-react-form.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/knative/kafka-source-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/knative/kafka-source-a.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/knative/kafka-source-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/knative/kafka-source-b.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/knative/kafka-source-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/knative/kafka-source-c.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/knative/kafka-topic-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/knative/kafka-topic-a.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/knative/kafka-topic-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/knative/kafka-topic-b.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/deploy/knative/kafka-topic-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/deploy/knative/kafka-topic-c.yaml -------------------------------------------------------------------------------- /bindings-knative-eventing/img/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/img/diagram.png -------------------------------------------------------------------------------- /bindings-knative-eventing/img/react-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/img/react-form.png -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/.gitignore -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/Dockerfile -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/.gitignore -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/README.md -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/package.json -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/public/favicon.ico -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/public/index.html -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/public/logo192.png -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/public/logo512.png -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/App.css -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/App.js -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/App.test.js -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/MessageForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/MessageForm.js -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/Nav.js -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/index.css -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/index.js -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/src/logo.svg -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/client/yarn.lock -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/package.json -------------------------------------------------------------------------------- /bindings-knative-eventing/react-form/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/bindings-knative-eventing/react-form/server.js -------------------------------------------------------------------------------- /commercetools-graphql-sample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/.DS_Store -------------------------------------------------------------------------------- /commercetools-graphql-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/README.md -------------------------------------------------------------------------------- /commercetools-graphql-sample/deploy/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/deploy/python.yaml -------------------------------------------------------------------------------- /commercetools-graphql-sample/img/Bindings_Standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/img/Bindings_Standalone.png -------------------------------------------------------------------------------- /commercetools-graphql-sample/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/makefile -------------------------------------------------------------------------------- /commercetools-graphql-sample/pythonapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/pythonapp/Dockerfile -------------------------------------------------------------------------------- /commercetools-graphql-sample/pythonapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/commercetools-graphql-sample/pythonapp/app.py -------------------------------------------------------------------------------- /dapr-aks-workload-identity-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-aks-workload-identity-federation/README.md -------------------------------------------------------------------------------- /dapr-aks-workload-identity-federation/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-aks-workload-identity-federation/app/.gitignore -------------------------------------------------------------------------------- /dapr-aks-workload-identity-federation/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-aks-workload-identity-federation/app/Program.cs -------------------------------------------------------------------------------- /dapr-aks-workload-identity-federation/app/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-aks-workload-identity-federation/app/Program.csproj -------------------------------------------------------------------------------- /dapr-aks-workload-identity-federation/deploy/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-aks-workload-identity-federation/deploy/app.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/.gitignore -------------------------------------------------------------------------------- /dapr-apim-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/README.md -------------------------------------------------------------------------------- /dapr-apim-integration/apim/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/apim/api.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/apim/policy-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/apim/policy-all.json -------------------------------------------------------------------------------- /dapr-apim-integration/apim/policy-echo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/apim/policy-echo.json -------------------------------------------------------------------------------- /dapr-apim-integration/apim/policy-message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/apim/policy-message.json -------------------------------------------------------------------------------- /dapr-apim-integration/apim/policy-save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/apim/policy-save.json -------------------------------------------------------------------------------- /dapr-apim-integration/img/backend-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/img/backend-policy.png -------------------------------------------------------------------------------- /dapr-apim-integration/img/dapr-building-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/img/dapr-building-blocks.png -------------------------------------------------------------------------------- /dapr-apim-integration/img/overview-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/img/overview-diagram.png -------------------------------------------------------------------------------- /dapr-apim-integration/k8s/binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/k8s/binding.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/k8s/echo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/k8s/echo-service.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/k8s/event-subscriber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/k8s/event-subscriber.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/k8s/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/k8s/gateway.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/k8s/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/k8s/pubsub.yaml -------------------------------------------------------------------------------- /dapr-apim-integration/src/grpc-echo-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/grpc-echo-service/Dockerfile -------------------------------------------------------------------------------- /dapr-apim-integration/src/grpc-echo-service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/grpc-echo-service/Makefile -------------------------------------------------------------------------------- /dapr-apim-integration/src/grpc-echo-service/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/grpc-echo-service/go.mod -------------------------------------------------------------------------------- /dapr-apim-integration/src/grpc-echo-service/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/grpc-echo-service/go.sum -------------------------------------------------------------------------------- /dapr-apim-integration/src/grpc-echo-service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/grpc-echo-service/main.go -------------------------------------------------------------------------------- /dapr-apim-integration/src/http-event-subscriber/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/http-event-subscriber/Dockerfile -------------------------------------------------------------------------------- /dapr-apim-integration/src/http-event-subscriber/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/http-event-subscriber/Makefile -------------------------------------------------------------------------------- /dapr-apim-integration/src/http-event-subscriber/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/http-event-subscriber/go.mod -------------------------------------------------------------------------------- /dapr-apim-integration/src/http-event-subscriber/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/http-event-subscriber/go.sum -------------------------------------------------------------------------------- /dapr-apim-integration/src/http-event-subscriber/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-apim-integration/src/http-event-subscriber/main.go -------------------------------------------------------------------------------- /dapr-argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/README.md -------------------------------------------------------------------------------- /dapr-argocd/app/node/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/app/node/node.yaml -------------------------------------------------------------------------------- /dapr-argocd/app/python/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/app/python/python.yaml -------------------------------------------------------------------------------- /dapr-argocd/gitops/dapr-components/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/gitops/dapr-components/application.yaml -------------------------------------------------------------------------------- /dapr-argocd/gitops/dapr-components/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/gitops/dapr-components/redis.yaml -------------------------------------------------------------------------------- /dapr-argocd/gitops/dapr/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/gitops/dapr/application.yaml -------------------------------------------------------------------------------- /dapr-argocd/gitops/redis/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-argocd/gitops/redis/application.yaml -------------------------------------------------------------------------------- /dapr-distributed-calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/components/pubsub.yaml -------------------------------------------------------------------------------- /dapr-distributed-calendar/components/sendgrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/components/sendgrid.yaml -------------------------------------------------------------------------------- /dapr-distributed-calendar/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/components/statestore.yaml -------------------------------------------------------------------------------- /dapr-distributed-calendar/go/go_events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/go/go_events -------------------------------------------------------------------------------- /dapr-distributed-calendar/go/go_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/go/go_events.go -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_controller.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/accepts/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/accepts/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/accepts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/accepts/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/array-flatten/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/array-flatten/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/array-flatten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/array-flatten/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/body-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/body-parser/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/body-parser/lib/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/body-parser/lib/read.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/bytes/History.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/bytes/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/bytes/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/content-type/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/content-type/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/content-type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/content-type/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/content-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/content-type/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/content-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/content-type/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/cookie/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/cookie/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/cookie/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/cookie/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/cookie/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/.travis.yml -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/CHANGELOG.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/Makefile -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/component.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/karma.conf.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/src/browser.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/src/debug.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/depd/History.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/depd/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/depd/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/destroy/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/destroy/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/destroy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/destroy/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ee-first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ee-first/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encodeurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encodeurl/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encodeurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encodeurl/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encodeurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encodeurl/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encoding/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encoding/.prettierrc.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encoding/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encoding/.travis.yml -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encoding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encoding/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encoding/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encoding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encoding/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/encoding/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/encoding/test/test.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/escape-html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/escape-html/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/escape-html/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/escape-html/Readme.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/escape-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/escape-html/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/etag/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/etag/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/etag/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/History.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/Readme.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/express/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/finalhandler/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/finalhandler/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/finalhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/finalhandler/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/finalhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/finalhandler/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/finalhandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/finalhandler/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/forwarded/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/forwarded/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/forwarded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/forwarded/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/forwarded/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/forwarded/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/fresh/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/fresh/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/fresh/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/http-errors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/http-errors/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/http-errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/http-errors/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/http-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/http-errors/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/http-errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/http-errors/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/iconv-lite/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/iconv-lite/Changelog.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/iconv-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/iconv-lite/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/iconv-lite/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/iconv-lite/lib/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/iconv-lite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/iconv-lite/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/inherits/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/inherits/inherits.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/inherits/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ipaddr.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ipaddr.js/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ipaddr.js/ipaddr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ipaddr.js/ipaddr.min.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ipaddr.js/lib/ipaddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ipaddr.js/lib/ipaddr.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ipaddr.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ipaddr.js/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/is-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/is-stream/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/is-stream/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/is-stream/license -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/is-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/is-stream/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/is-stream/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/is-stream/readme.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/isomorphic-fetch/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /bower_components/ 3 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/isomorphic-fetch/fetch-bower.js: -------------------------------------------------------------------------------- 1 | module.exports = require('fetch'); 2 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/media-typer/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/media-typer/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/media-typer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/media-typer/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/media-typer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/media-typer/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/media-typer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/media-typer/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/methods/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/methods/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/methods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/methods/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-db/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-db/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-db/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-types/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-types/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-types/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-types/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime-types/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/CHANGELOG.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/cli.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/mime.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/src/build.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/src/test.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/mime/types.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ms/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ms/license.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ms/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/ms/readme.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/negotiator/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/negotiator/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/negotiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/negotiator/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/negotiator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/negotiator/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/negotiator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/negotiator/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/.npmignore -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/.travis.yml -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/CHANGELOG.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/LICENSE.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/LIMITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/LIMITS.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/lib/body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/lib/body.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/lib/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/test/dummy.txt: -------------------------------------------------------------------------------- 1 | i am a dummy -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/node-fetch/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/node-fetch/test/test.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/on-finished/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/on-finished/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/on-finished/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/on-finished/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/on-finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/on-finished/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/on-finished/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/on-finished/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/parseurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/parseurl/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/path-to-regexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/path-to-regexp/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/path-to-regexp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/path-to-regexp/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/proxy-addr/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/proxy-addr/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/proxy-addr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/proxy-addr/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/proxy-addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/proxy-addr/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/proxy-addr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/proxy-addr/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/proxy-addr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/proxy-addr/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/.editorconfig -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/lib/formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/lib/formats.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/lib/stringify.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/test/.eslintrc -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/test/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/test/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/test/stringify.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/qs/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/qs/test/utils.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/range-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/range-parser/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/range-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/range-parser/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/range-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/range-parser/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/range-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/range-parser/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/raw-body/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/raw-body/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/raw-body/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/raw-body/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/raw-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/raw-body/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/raw-body/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/raw-body/index.d.ts -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/raw-body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/raw-body/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/raw-body/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/raw-body/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safe-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safe-buffer/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safe-buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safe-buffer/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safe-buffer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safe-buffer/index.d.ts -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safe-buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safe-buffer/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safer-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safer-buffer/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safer-buffer/safer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safer-buffer/safer.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/safer-buffer/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/safer-buffer/tests.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/send/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/send/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/send/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/send/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/serve-static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/serve-static/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/serve-static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/serve-static/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/statuses/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/statuses/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/statuses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/statuses/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/statuses/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/statuses/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/statuses/codes.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/statuses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/statuses/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/statuses/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/statuses/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/toidentifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/toidentifier/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/toidentifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/toidentifier/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/type-is/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/type-is/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/type-is/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/type-is/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/type-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/type-is/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/unpipe/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/unpipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/unpipe/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/unpipe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/unpipe/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/utils-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/utils-merge/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/utils-merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/utils-merge/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/vary/README.md -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/vary/index.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/vary/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/whatwg-fetch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/whatwg-fetch/LICENSE -------------------------------------------------------------------------------- /dapr-distributed-calendar/node_modules/whatwg-fetch/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/node_modules/whatwg-fetch/fetch.js -------------------------------------------------------------------------------- /dapr-distributed-calendar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/package-lock.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/package.json -------------------------------------------------------------------------------- /dapr-distributed-calendar/python/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-distributed-calendar/python/messages.py -------------------------------------------------------------------------------- /dapr-eks-podidentity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/.gitignore -------------------------------------------------------------------------------- /dapr-eks-podidentity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/README.md -------------------------------------------------------------------------------- /dapr-eks-podidentity/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/app/Dockerfile -------------------------------------------------------------------------------- /dapr-eks-podidentity/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/app/go.mod -------------------------------------------------------------------------------- /dapr-eks-podidentity/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/app/main.go -------------------------------------------------------------------------------- /dapr-eks-podidentity/components/aws-secretstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/components/aws-secretstore.yaml -------------------------------------------------------------------------------- /dapr-eks-podidentity/deploy/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/deploy/app.yaml -------------------------------------------------------------------------------- /dapr-eks-podidentity/k8s-config/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/dapr-eks-podidentity/k8s-config/service-account.yaml -------------------------------------------------------------------------------- /functions-and-keda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/README.md -------------------------------------------------------------------------------- /functions-and-keda/deploy/csharp-function-subscriber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/deploy/csharp-function-subscriber.yaml -------------------------------------------------------------------------------- /functions-and-keda/deploy/python-function-publisher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/deploy/python-function-publisher.yaml -------------------------------------------------------------------------------- /functions-and-keda/deploy/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/deploy/redis.yaml -------------------------------------------------------------------------------- /functions-and-keda/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/setup.ps1 -------------------------------------------------------------------------------- /functions-and-keda/src/csharp-function-subscriber/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /functions-and-keda/src/csharp-function-subscriber/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/csharp-function-subscriber/.gitignore -------------------------------------------------------------------------------- /functions-and-keda/src/csharp-function-subscriber/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/csharp-function-subscriber/Dockerfile -------------------------------------------------------------------------------- /functions-and-keda/src/csharp-function-subscriber/MyTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/csharp-function-subscriber/MyTopic.cs -------------------------------------------------------------------------------- /functions-and-keda/src/csharp-function-subscriber/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/csharp-function-subscriber/Startup.cs -------------------------------------------------------------------------------- /functions-and-keda/src/csharp-function-subscriber/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/csharp-function-subscriber/host.json -------------------------------------------------------------------------------- /functions-and-keda/src/javascript-function-subscriber/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /functions-and-keda/src/python-function-publisher/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /functions-and-keda/src/python-function-publisher/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /functions-and-keda/src/python-function-publisher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/python-function-publisher/.gitignore -------------------------------------------------------------------------------- /functions-and-keda/src/python-function-publisher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/python-function-publisher/Dockerfile -------------------------------------------------------------------------------- /functions-and-keda/src/python-function-publisher/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/src/python-function-publisher/host.json -------------------------------------------------------------------------------- /functions-and-keda/src/python-function-publisher/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | azure-functions -------------------------------------------------------------------------------- /functions-and-keda/utils/base-templates/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/utils/base-templates/helm-rbac.yaml -------------------------------------------------------------------------------- /functions-and-keda/utils/base-templates/redis-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/functions-and-keda/utils/base-templates/redis-base.yaml -------------------------------------------------------------------------------- /hello-dapr-slim/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /hello-dapr-slim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/README.md -------------------------------------------------------------------------------- /hello-dapr-slim/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/app.js -------------------------------------------------------------------------------- /hello-dapr-slim/img/Architecture_DiagramA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/img/Architecture_DiagramA.png -------------------------------------------------------------------------------- /hello-dapr-slim/img/postman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/img/postman1.png -------------------------------------------------------------------------------- /hello-dapr-slim/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/package-lock.json -------------------------------------------------------------------------------- /hello-dapr-slim/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/package.json -------------------------------------------------------------------------------- /hello-dapr-slim/sample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/sample.http -------------------------------------------------------------------------------- /hello-dapr-slim/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-dapr-slim/sample.json -------------------------------------------------------------------------------- /hello-docker-compose/.gitignore: -------------------------------------------------------------------------------- 1 | .dockerfiles 2 | *.override.* -------------------------------------------------------------------------------- /hello-docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/README.md -------------------------------------------------------------------------------- /hello-docker-compose/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/components/pubsub.yaml -------------------------------------------------------------------------------- /hello-docker-compose/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/components/statestore.yaml -------------------------------------------------------------------------------- /hello-docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /hello-docker-compose/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/makefile -------------------------------------------------------------------------------- /hello-docker-compose/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/node/.gitignore -------------------------------------------------------------------------------- /hello-docker-compose/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/node/Dockerfile -------------------------------------------------------------------------------- /hello-docker-compose/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/node/app.js -------------------------------------------------------------------------------- /hello-docker-compose/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/node/package.json -------------------------------------------------------------------------------- /hello-docker-compose/python/.gitignore: -------------------------------------------------------------------------------- 1 | .dockerfiles 2 | -------------------------------------------------------------------------------- /hello-docker-compose/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/python/Dockerfile -------------------------------------------------------------------------------- /hello-docker-compose/python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-docker-compose/python/app.py -------------------------------------------------------------------------------- /hello-service-fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-service-fabric/README.md -------------------------------------------------------------------------------- /hello-service-fabric/daprsfpkg/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-service-fabric/daprsfpkg/ApplicationManifest.xml -------------------------------------------------------------------------------- /hello-service-fabric/daprsfpkg/MyService/CodeUserApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-service-fabric/daprsfpkg/MyService/CodeUserApp/app.js -------------------------------------------------------------------------------- /hello-service-fabric/daprsfpkg/MyService/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-service-fabric/daprsfpkg/MyService/ServiceManifest.xml -------------------------------------------------------------------------------- /hello-service-fabric/img/Architecture_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-service-fabric/img/Architecture_Diagram.png -------------------------------------------------------------------------------- /hello-service-fabric/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-service-fabric/requests.http -------------------------------------------------------------------------------- /hello-typescript/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | app.js 4 | -------------------------------------------------------------------------------- /hello-typescript/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/.vscode/tasks.json -------------------------------------------------------------------------------- /hello-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/README.md -------------------------------------------------------------------------------- /hello-typescript/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/app.ts -------------------------------------------------------------------------------- /hello-typescript/img/Architecture_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/img/Architecture_Diagram.png -------------------------------------------------------------------------------- /hello-typescript/img/postman1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/img/postman1.jpg -------------------------------------------------------------------------------- /hello-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/package-lock.json -------------------------------------------------------------------------------- /hello-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/package.json -------------------------------------------------------------------------------- /hello-typescript/sample.json: -------------------------------------------------------------------------------- 1 | {"data": { "orderId": "41" } } -------------------------------------------------------------------------------- /hello-typescript/sample_get.http: -------------------------------------------------------------------------------- 1 | GET http://localhost:3500/v1.0/invoke/nodeapp/method/order -------------------------------------------------------------------------------- /hello-typescript/sample_post.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/sample_post.http -------------------------------------------------------------------------------- /hello-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-typescript/tsconfig.json -------------------------------------------------------------------------------- /hello-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/README.md -------------------------------------------------------------------------------- /hello-wasm/components/wasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/components/wasm.yaml -------------------------------------------------------------------------------- /hello-wasm/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/config.yaml -------------------------------------------------------------------------------- /hello-wasm/wasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/wasm/Makefile -------------------------------------------------------------------------------- /hello-wasm/wasm/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/wasm/go.mod -------------------------------------------------------------------------------- /hello-wasm/wasm/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/wasm/go.sum -------------------------------------------------------------------------------- /hello-wasm/wasm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/wasm/main.go -------------------------------------------------------------------------------- /hello-wasm/wasm/main.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/hello-wasm/wasm/main.wasm -------------------------------------------------------------------------------- /knative-distributed-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/README.md -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/appconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/appconfig.yaml -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/dotnet-subtractor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/dotnet-subtractor.yaml -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/go-adder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/go-adder.yaml -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/node-divider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/node-divider.yaml -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/python-multiplier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/python-multiplier.yaml -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/react-calculator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/react-calculator.yaml -------------------------------------------------------------------------------- /knative-distributed-calculator/deploy/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/knative-distributed-calculator/deploy/redis.yaml -------------------------------------------------------------------------------- /middleware-oauth-google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/README.md -------------------------------------------------------------------------------- /middleware-oauth-google/deploy/echoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/deploy/echoapp.yaml -------------------------------------------------------------------------------- /middleware-oauth-google/deploy/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/deploy/ingress.yaml -------------------------------------------------------------------------------- /middleware-oauth-google/deploy/oauth2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/deploy/oauth2.yaml -------------------------------------------------------------------------------- /middleware-oauth-google/deploy/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/deploy/pipeline.yaml -------------------------------------------------------------------------------- /middleware-oauth-google/echoapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/echoapp/Dockerfile -------------------------------------------------------------------------------- /middleware-oauth-google/echoapp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/echoapp/app.js -------------------------------------------------------------------------------- /middleware-oauth-google/echoapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/echoapp/package.json -------------------------------------------------------------------------------- /middleware-oauth-google/img/Architecture_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/img/Architecture_Diagram.png -------------------------------------------------------------------------------- /middleware-oauth-google/img/google-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/img/google-console.png -------------------------------------------------------------------------------- /middleware-oauth-google/img/google-dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/img/google-dummy.png -------------------------------------------------------------------------------- /middleware-oauth-google/img/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/img/webpage.png -------------------------------------------------------------------------------- /middleware-oauth-google/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-google/makefile -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/README.md -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/deploy/msgraphapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/deploy/msgraphapp.yaml -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/deploy/msgraphpipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/deploy/msgraphpipeline.yaml -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/img/architecture_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/img/architecture_diagram.png -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/makefile -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/msgraphapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/msgraphapp/Dockerfile -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/msgraphapp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/msgraphapp/app.js -------------------------------------------------------------------------------- /middleware-oauth-microsoftazure/msgraphapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/middleware-oauth-microsoftazure/msgraphapp/package.json -------------------------------------------------------------------------------- /multi-app-workflows/E-CommerceArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/E-CommerceArchitecture.png -------------------------------------------------------------------------------- /multi-app-workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/README.md -------------------------------------------------------------------------------- /multi-app-workflows/dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/dapr.yaml -------------------------------------------------------------------------------- /multi-app-workflows/go/order-orchestrator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/go/order-orchestrator/go.mod -------------------------------------------------------------------------------- /multi-app-workflows/go/order-orchestrator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/go/order-orchestrator/go.sum -------------------------------------------------------------------------------- /multi-app-workflows/go/order-orchestrator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/go/order-orchestrator/main.go -------------------------------------------------------------------------------- /multi-app-workflows/go/order-orchestrator/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/go/order-orchestrator/models.go -------------------------------------------------------------------------------- /multi-app-workflows/java/ai-recommendation-service/dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/java/ai-recommendation-service/dapr.yaml -------------------------------------------------------------------------------- /multi-app-workflows/java/ai-recommendation-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/java/ai-recommendation-service/pom.xml -------------------------------------------------------------------------------- /multi-app-workflows/java/inventory-service/dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/java/inventory-service/dapr.yaml -------------------------------------------------------------------------------- /multi-app-workflows/java/inventory-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/java/inventory-service/pom.xml -------------------------------------------------------------------------------- /multi-app-workflows/java/payment-service/dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/java/payment-service/dapr.yaml -------------------------------------------------------------------------------- /multi-app-workflows/java/payment-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/java/payment-service/pom.xml -------------------------------------------------------------------------------- /multi-app-workflows/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/makefile -------------------------------------------------------------------------------- /multi-app-workflows/resources/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/multi-app-workflows/resources/statestore.yaml -------------------------------------------------------------------------------- /outbox/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/.vscode/launch.json -------------------------------------------------------------------------------- /outbox/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/.vscode/tasks.json -------------------------------------------------------------------------------- /outbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/README.md -------------------------------------------------------------------------------- /outbox/dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/dapr.yaml -------------------------------------------------------------------------------- /outbox/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/makefile -------------------------------------------------------------------------------- /outbox/order-notification/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/order-notification/Program.cs -------------------------------------------------------------------------------- /outbox/order-notification/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/order-notification/Program.csproj -------------------------------------------------------------------------------- /outbox/order-notification/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/order-notification/Properties/launchSettings.json -------------------------------------------------------------------------------- /outbox/order-notification/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/order-notification/appsettings.json -------------------------------------------------------------------------------- /outbox/order-processor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/order-processor/Program.cs -------------------------------------------------------------------------------- /outbox/order-processor/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/order-processor/Program.csproj -------------------------------------------------------------------------------- /outbox/resources/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/resources/pubsub.yaml -------------------------------------------------------------------------------- /outbox/resources/resiliency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/resources/resiliency.yaml -------------------------------------------------------------------------------- /outbox/resources/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/resources/statestore.yaml -------------------------------------------------------------------------------- /outbox/resources/statestoresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/outbox/resources/statestoresql.yaml -------------------------------------------------------------------------------- /pluggable-components-dotnet-template/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj -------------------------------------------------------------------------------- /pluggable-components-dotnet-template/Component.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pluggable-components-dotnet-template/Component.csproj -------------------------------------------------------------------------------- /pluggable-components-dotnet-template/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pluggable-components-dotnet-template/Program.cs -------------------------------------------------------------------------------- /pluggable-components-dotnet-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pluggable-components-dotnet-template/README.md -------------------------------------------------------------------------------- /pluggable-components-dotnet-template/Services/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pluggable-components-dotnet-template/Services/Services.cs -------------------------------------------------------------------------------- /pluggable-components-dotnet-template/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pluggable-components-dotnet-template/appsettings.json -------------------------------------------------------------------------------- /pub-sub-routing/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /pub-sub-routing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/Dockerfile -------------------------------------------------------------------------------- /pub-sub-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/README.md -------------------------------------------------------------------------------- /pub-sub-routing/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/app.js -------------------------------------------------------------------------------- /pub-sub-routing/components/in-memory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/components/in-memory.yaml -------------------------------------------------------------------------------- /pub-sub-routing/components/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/components/subscription.yaml -------------------------------------------------------------------------------- /pub-sub-routing/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/config.yaml -------------------------------------------------------------------------------- /pub-sub-routing/messages/gadget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/messages/gadget.json -------------------------------------------------------------------------------- /pub-sub-routing/messages/thingamajig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/messages/thingamajig.json -------------------------------------------------------------------------------- /pub-sub-routing/messages/widget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/messages/widget.json -------------------------------------------------------------------------------- /pub-sub-routing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pub-sub-routing/package.json -------------------------------------------------------------------------------- /pubsub-raw-payload/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/.gitignore -------------------------------------------------------------------------------- /pubsub-raw-payload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/README.md -------------------------------------------------------------------------------- /pubsub-raw-payload/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/components/pubsub.yaml -------------------------------------------------------------------------------- /pubsub-raw-payload/components/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/components/subscription.yaml -------------------------------------------------------------------------------- /pubsub-raw-payload/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/docker-compose.yml -------------------------------------------------------------------------------- /pubsub-raw-payload/pubsub-raw-payload.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/pubsub-raw-payload.sln -------------------------------------------------------------------------------- /pubsub-raw-payload/src/Publisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/src/Publisher/Program.cs -------------------------------------------------------------------------------- /pubsub-raw-payload/src/Publisher/Publisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/src/Publisher/Publisher.csproj -------------------------------------------------------------------------------- /pubsub-raw-payload/src/Shared/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/src/Shared/Message.cs -------------------------------------------------------------------------------- /pubsub-raw-payload/src/Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/src/Shared/Shared.csproj -------------------------------------------------------------------------------- /pubsub-raw-payload/src/Subscriber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/src/Subscriber/Program.cs -------------------------------------------------------------------------------- /pubsub-raw-payload/src/Subscriber/Subscriber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/pubsub-raw-payload/src/Subscriber/Subscriber.csproj -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/Makefile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/README.md -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/demo/demo-catalogue-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/demo/demo-catalogue-service.sh -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/demo/demo-dashboard-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/demo/demo-dashboard-service.sh -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/demo/demo-notifications-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/demo/demo-notifications-service.sh -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/demo/monitor-notifications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/demo/monitor-notifications.sh -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/drasi/queries/at-risk-orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/drasi/queries/at-risk-orders.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/drasi/queries/low-stock-event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/drasi/queries/low-stock-event.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/drasi/sources/customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/drasi/sources/customers.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/drasi/sources/orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/drasi/sources/orders.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/drasi/sources/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/drasi/sources/products.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/drasi/sources/reviews.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/drasi/sources/reviews.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/01-architectire-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/01-architectire-overview.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/02-ecommerce-scenario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/02-ecommerce-scenario.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/04-dashboard-challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/04-dashboard-challenge.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/05-eventing-challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/05-eventing-challenge.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/06-drasi-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/06-drasi-overview.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/07-drasi-loves-dapr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/07-drasi-loves-dapr.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/08-product-catalog-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/08-product-catalog-query.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/09-dashboard-queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/09-dashboard-queries.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/10-inventory-alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/10-inventory-alerts.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/images/11-benefits-recap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/images/11-benefits-recap.png -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/code/main.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/code/models.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/index.html -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/nginx.conf -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/package.json -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/requirements.txt -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/src/App.tsx -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/src/index.css -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/src/main.tsx -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/src/types.ts -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/tsconfig.json -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/catalogue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/catalogue/vite.config.ts -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/customers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/customers/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/customers/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/customers/code/main.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/customers/code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/customers/code/models.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/customers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/customers/requirements.txt -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/.gitignore -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/index.html -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/nginx.conf -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/package.json -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/src/App.tsx -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/src/config.ts -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/src/index.css -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/src/main.tsx -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/src/types.ts -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/tsconfig.json -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/dashboard/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/dashboard/vite.config.ts -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/notifications/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/notifications/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/notifications/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/notifications/code/main.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/notifications/ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | *.log -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/notifications/ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/code/dapr_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/code/dapr_client.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/code/main.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/code/models.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/k8s/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/k8s/deployment.yaml -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/requirements.txt -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/orders/setup/test-apis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/orders/setup/test-apis.sh -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/products/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/products/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/products/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/products/code/main.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/products/code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/products/code/models.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/products/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/products/requirements.txt -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/reviews/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/reviews/Dockerfile -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/reviews/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/reviews/code/main.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/reviews/code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/reviews/code/models.py -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/reviews/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/reviews/requirements.txt -------------------------------------------------------------------------------- /reactive-dapr-with-drasi/services/reviews/setup/test-apis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/reactive-dapr-with-drasi/services/reviews/setup/test-apis.sh -------------------------------------------------------------------------------- /read-kubernetes-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/README.md -------------------------------------------------------------------------------- /read-kubernetes-events/deploy/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/deploy/kubernetes.yaml -------------------------------------------------------------------------------- /read-kubernetes-events/deploy/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/deploy/node.yaml -------------------------------------------------------------------------------- /read-kubernetes-events/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/makefile -------------------------------------------------------------------------------- /read-kubernetes-events/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/node/.gitignore -------------------------------------------------------------------------------- /read-kubernetes-events/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/node/Dockerfile -------------------------------------------------------------------------------- /read-kubernetes-events/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/node/app.js -------------------------------------------------------------------------------- /read-kubernetes-events/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/node/package-lock.json -------------------------------------------------------------------------------- /read-kubernetes-events/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/read-kubernetes-events/node/package.json -------------------------------------------------------------------------------- /twitter-sentiment-processor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/.gitignore -------------------------------------------------------------------------------- /twitter-sentiment-processor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/README.md -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/components/pubsub.yaml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/components/statestore.yaml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/components/twitter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/components/twitter.yaml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider-net/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | bin/ -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider-net/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo1/provider-net/run.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider-net/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo1/provider-net/run.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo1/provider/app.js -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo1/provider/logger.js -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo1/provider/run.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo1/provider/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo1/provider/run.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/config.yaml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/iac/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/iac/main.bicep -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/iac/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/iac/main.json -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | npm-debug 4 | bin 5 | components 6 | -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/processor/Dockerfile -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/processor/app.js -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/processor/logger.js -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/processor/publish.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/processor/run.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/processor/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/processor/run.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | npm-debug 4 | bin 5 | components 6 | -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/Dockerfile -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/app.js -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/logger.js -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/publish.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/publish.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/run.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/provider/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/provider/run.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/setup.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/setup.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | components 3 | -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/Dockerfile -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/go.mod -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/go.sum -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/handler.go -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/main.go -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/publish.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/publish.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/run.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo2/viewer/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo2/viewer/run.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo3/demochart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo3/demochart/Chart.yaml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo3/iac/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo3/iac/main.bicep -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo3/iac/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo3/iac/main.json -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo3/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo3/setup.ps1 -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/demo3/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/demo3/setup.sh -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/.gitignore -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/Makefile -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/README.md -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/overview.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/processor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/processor/pom.xml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/provider/pom.xml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/ui.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/viewer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/viewer/Dockerfile -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/javademo/viewer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/javademo/viewer/pom.xml -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/py-demo/README.md -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/local_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/py-demo/local_secrets.json -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/py-demo/overview.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/processor/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | components 3 | -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/provider/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | components 3 | -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/py-demo/ui.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/viewer/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | components 3 | -------------------------------------------------------------------------------- /twitter-sentiment-processor/demos/py-demo/viewer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/demos/py-demo/viewer/Dockerfile -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/log.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/metric.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/overview.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/pubsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/pubsub.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/redis.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/state.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/twitter_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/twitter_keys.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/ui.png -------------------------------------------------------------------------------- /twitter-sentiment-processor/images/zipkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/twitter-sentiment-processor/images/zipkin.png -------------------------------------------------------------------------------- /workflow-external-invocation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/.gitignore -------------------------------------------------------------------------------- /workflow-external-invocation/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/.vscode/extensions.json -------------------------------------------------------------------------------- /workflow-external-invocation/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/.vscode/launch.json -------------------------------------------------------------------------------- /workflow-external-invocation/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/.vscode/tasks.json -------------------------------------------------------------------------------- /workflow-external-invocation/CheckoutService/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/CheckoutService/Models.cs -------------------------------------------------------------------------------- /workflow-external-invocation/CheckoutService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/CheckoutService/Program.cs -------------------------------------------------------------------------------- /workflow-external-invocation/DemoArch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/DemoArch.svg -------------------------------------------------------------------------------- /workflow-external-invocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/README.md -------------------------------------------------------------------------------- /workflow-external-invocation/Resources/httpEndpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/Resources/httpEndpoint.yaml -------------------------------------------------------------------------------- /workflow-external-invocation/Resources/state-inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/Resources/state-inventory.yaml -------------------------------------------------------------------------------- /workflow-external-invocation/Resources/state-workstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/Resources/state-workstream.yaml -------------------------------------------------------------------------------- /workflow-external-invocation/test.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-external-invocation/test.rest -------------------------------------------------------------------------------- /workflow-orderprocessing-python/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/.vscode/settings.json -------------------------------------------------------------------------------- /workflow-orderprocessing-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/README.md -------------------------------------------------------------------------------- /workflow-orderprocessing-python/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/components/pubsub.yaml -------------------------------------------------------------------------------- /workflow-orderprocessing-python/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/components/statestore.yaml -------------------------------------------------------------------------------- /workflow-orderprocessing-python/dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/dapr.yaml -------------------------------------------------------------------------------- /workflow-orderprocessing-python/demo.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/demo.http -------------------------------------------------------------------------------- /workflow-orderprocessing-python/services/inventory/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/services/inventory/app.py -------------------------------------------------------------------------------- /workflow-orderprocessing-python/services/notifications/requirements.txt: -------------------------------------------------------------------------------- 1 | flask-socketio == 5.3.6 2 | flask >= 3.0.0 -------------------------------------------------------------------------------- /workflow-orderprocessing-python/services/payments/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/services/payments/app.py -------------------------------------------------------------------------------- /workflow-orderprocessing-python/services/shipping/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/services/shipping/app.py -------------------------------------------------------------------------------- /workflow-orderprocessing-python/zipkin-workflow-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/zipkin-workflow-failure.png -------------------------------------------------------------------------------- /workflow-orderprocessing-python/zipkin-workflow-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/samples/HEAD/workflow-orderprocessing-python/zipkin-workflow-success.png --------------------------------------------------------------------------------