quickstarts/state_management/go/sdk/README.md

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 http folder.

This quickstart includes one service: Go client service order-processor

Run Go service with Dapr

  1. Run the Go service app with Dapr in the order-processor folder:
cd ./order-processor
dapr run \
  --app-id order-processor \
  --components-path ../../../components \
  -- go run .