mirror of https://github.com/dapr/quickstarts.git
1.0 KiB
1.0 KiB
Dapr state management
In this quickstart, you'll create a microservice to demonstrate Dapr's state management API. The service generates messages to store data in a state store.
Visit the Dapr documentation on State Management for more information.
Note: This example leverages the Dapr Client SDK. You can find an example using plain HTTP in the
httpfolder.
This quickstart includes one service: Go client service order-processor
Run Go service with Dapr
- Run the Go service app with Dapr in the
order-processorfolder:
cd ./order-processor
dapr run \
--app-id order-processor \
--components-path ../../../components \
-- go run .