github.com/GoogleContainerTools/skaffold@v1.39.18/examples/hot-reload/README.md (about)

     1  ### Example: hot-reload with Node and Python
     2  
     3  [![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleContainerTools/skaffold&cloudshell_open_in_editor=README.md&cloudshell_workspace=examples/hot-reload)
     4  
     5  Application demonstrating the file synchronization mode with both NodeJS and Python.
     6  
     7  #### Init
     8  
     9  ```bash
    10  skaffold dev
    11  ```
    12  
    13  #### Workflow
    14  
    15  * Make some changes to `node/src/index.js`:
    16      * The file will be synchronized to the cluster
    17      * `nodemon` will restart the application
    18  * Make some changes to `python/src/app.py`:
    19      * The file will be synchronized to the cluster
    20      * `flask` will restart the application