mirror of https://github.com/dapr/cli.git
35 lines
882 B
Go
35 lines
882 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/dapr/cli/pkg/print"
|
|
"github.com/dapr/cli/pkg/standalone"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var stopAppID string
|
|
|
|
var StopCmd = &cobra.Command{
|
|
Use: "stop",
|
|
Short: "Stops a running Dapr instance and its associated app",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
err := standalone.Stop(stopAppID)
|
|
if err != nil {
|
|
print.FailureStatusEvent(os.Stdout, "failed to stop app id %s: %s", stopAppID, err)
|
|
} else {
|
|
print.SuccessStatusEvent(os.Stdout, "app stopped successfully")
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
StopCmd.Flags().StringVarP(&stopAppID, "app-id", "", "", "app id to stop (standalone mode)")
|
|
RootCmd.AddCommand(StopCmd)
|
|
}
|