Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.73 KB

reference.md

File metadata and controls

51 lines (39 loc) · 1.73 KB

Dapr (dapr) Command Line Interface (CLI)

The Dapr CLI allows you to setup Dapr on your local dev machine or on a Kubernetes cluster, provides debugging support, and launches and manages Dapr instances.

         __                
    ____/ /___ _____  _____
   / __  / __ '/ __ \/ ___/
  / /_/ / /_/ / /_/ / /    
  \__,_/\__,_/ .___/_/     
              /_/            
                                                                           
======================================================
A serverless runtime for hyperscale, distributed systems

Usage:
  dapr [command]

Available Commands:
  help        Help about any command
  init        Setup Dapr in Kubernetes or Standalone modes
  list        List all Dapr instances
  publish     Publish an event to multiple consumers
  run         Launches Dapr and your app side by side
  invoke      Invokes a Dapr app with an optional payload
  stop        Stops a running Dapr instance and its associated app
  uninstall   Removes a Dapr installation

Flags:
  -h, --help      help for Dapr
      --version   version for Dapr

Use "dapr [command] --help" for more information about a command.

Command Reference

You can learn more about each Dapr command from the links below.

Environment Variables

Some Dapr flags can be set via environment variables (e.g. DAPR_NETWORK for the --network flag of the dapr init command). Note that specifying the flag on the command line overrides any set environment variable.