github.com/windmilleng/tilt@v0.13.6/integration/onewatch/Tiltfile (about)

     1  # -*- mode: Python -*-
     2  
     3  include('../Tiltfile')
     4  
     5  k8s_yaml('deployment.yaml')
     6  repo = local_git_repo('../../')
     7  docker_build('gcr.io/windmill-test-containers/integration/onewatch',
     8               '.',
     9               dockerfile='Dockerfile',
    10               live_update=[
    11                 sync('.', '/app'),
    12                 run('/app/compile.sh'),
    13                 run('/app/restart.sh'),
    14               ])
    15  
    16  k8s_resource("onewatch", port_forwards=["31234:8000"])