github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v1/content/en/docs/workflows/dev.md (about)

     1  ---
     2  title: "skaffold dev"
     3  linkTitle: "Continuous Development"
     4  featureId: dev
     5  weight: 20
     6  ---
     7  
     8  `skaffold dev` enables continuous local development on an application.
     9  While in `dev` mode, Skaffold will watch an application's source files, and when it detects changes,
    10  will rebuild your images (or sync files to your running containers), push any new images, test built images, and redeploy the application to your cluster.
    11  
    12  `skaffold dev` is considered Skaffold's main mode of operation, as it allows you
    13  to leverage all of the features of Skaffold in a continuous way while iterating
    14  on your application.
    15  
    16  {{<alert title="💡 Tip">}}
    17  Running `skaffold dev` is equivalent to running the IDE command `Run on Kubernetes` if you're using Skaffold with the [Cloud Code IDE extensions]({{< relref "../install/#managed-ide" >}}). In addition to this guide you should also look at the corresponding guides for [VSCode](https://cloud.google.com/code/docs/vscode/running-an-application), [IntelliJ](https://cloud.google.com/code/docs/intellij/deploying-a-k8-app) and [Cloud Shell](https://ide.cloud.google.com/?walkthrough_tutorial_url=https%3A%2F%2Fwalkthroughs.googleusercontent.com%2Fcontent%2Fgke_cloud_code_create_app%2Fgke_cloud_code_create_app.md).
    18  {{</alert>}}
    19  
    20  ## Dev loop
    21  
    22  When `skaffold dev` is run, Skaffold will first do a full build, test and deploy of all artifacts specified in the `skaffold.yaml`, similar to `skaffold run`. Upon successful build, test and deploy, Skaffold will start watching all source file dependencies for all artifacts specified in the project. As changes are made to these source files, Skaffold will rebuild and retest the associated artifacts, and redeploy the new changes to your cluster.
    23  
    24  The dev loop will run until the user cancels the Skaffold process with `Ctrl+C`. Upon receiving this signal, Skaffold will clean up all deployed artifacts on the active cluster, meaning that Skaffold won't abandon any Kubernetes resources that it created throughout the lifecycle of the run. This can be optionally disabled by using the `--no-prune` flag.
    25  
    26  ## Precedence of Actions
    27  
    28  The actions performed by Skaffold during the dev loop have precedence over one another, so that behavior is always predictable. The order of actions is:
    29  
    30  1. [File Sync]({{<relref "/docs/pipeline-stages/filesync" >}})
    31  1. [Build]({{<relref "/docs/pipeline-stages/builders" >}})
    32  1. [Test]({{<relref "/docs/pipeline-stages/testers" >}})
    33  1. [Deploy]({{<relref "/docs/pipeline-stages/deployers" >}})
    34  
    35  ## File Watcher and Watch Modes
    36  
    37  Skaffold computes the dependencies for each artifact based on the builder being used, and the root directory of the artifact. Once all source file dependencies are computed, in `dev` mode, Skaffold will continuously watch these files for changes in the background, and conditionally re-run the loop when changes are detected.
    38  
    39  By default, Skaffold uses filesystem notifications of your OS to monitor changes
    40  on the local filesystem and re-runs the loop on every change.
    41  
    42  Skaffold also supports a `polling` mode where the filesystem is checked for
    43  changes on a configurable interval, or a `manual` mode, where Skaffold waits for
    44  user input to check for file changes. These watch modes can be configured
    45  through the `--trigger` flag.
    46  
    47  ## Controlling the Dev Loop with API
    48  
    49  {{< alert title="Note">}}
    50  This section is intended for developers who build tooling on top of Skaffold.
    51  {{</alert>}}
    52  
    53  By default, the dev loop will carry out all actions (as needed) each time a file is changed locally, with the exception of operating in `manual` trigger mode. However, individual actions can be gated off by user input through the Skaffold API.
    54  
    55  With this API, users can selectively turn off the automatic dev loop and can tell Skaffold to wait for user input before performing any of these actions, even if the requisite files were changed on the filesystem. By doing so, users can "queue up" changes while they are iterating locally, and then have Skaffold rebuild and redeploy only when asked. This can be very useful when builds are happening more frequently than desired, when builds or deploys take a long time or are otherwise very costly, or when users want to integrate other tools with `skaffold dev`.
    56  
    57  For more documentation, see the [Skaffold API Docs]({{<relref "/docs/design/api" >}}).