Skip to content

Latest commit

 

History

History

5.1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Using the Dapr Rust SDK

This lab is build to illustrate how the Dapr Rust SDK can be used. In this application we increment a number in the connected Redis Dapr statestore. The diagram below shows the system setup.

Architecture Overview

All applications that are used throughout the entire course are listed under Installs.

How complete the lab:

  1. Start Dapr locally: dapr init
  2. Run the application: dapr run --app-id dapr-rust-sdk --app-port 8081 --dapr-http-port 3500 -- cargo run
  3. Navigate to your browser or use the terminal to hit the endpoint a couple of times to test the application: curl 127.0.0.1:8081

Done!