dapr getting started
To get started running your dapr app, you need to install locally by running. This is to install dapr locally on my machine. It is different from initializing dapr in your kubernetes cluster as shown in the following steps.
dapr init
Then, to install dapr in a kubernetes environment
dapr init -k
Then fire up the dashboard using
dapr dashboard -k
And then you can spin up app that interacts with dapr by running,
dapr run --app-id myapp --dapr-http-port 3500
If you can get the app running and shows output as shown here, then dapr generic component is available.
And then get started with this example here
https://github.com/dapr/quickstarts/tree/master/tutorials/hello-kubernetes
Comments