github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/integration/live_update_only/Tiltfile (about)

     1  include('../Tiltfile')
     2  
     3  custom_build(
     4      ref='nginx',
     5      # this is a hack that puts the builder into "live update only" mode
     6      command=':',
     7      deps=['./web', 'special.txt'],
     8      disable_push=True,
     9      skips_local_docker=True,
    10      live_update=[
    11          sync('./web/', '/usr/share/nginx/html/')
    12      ]
    13  )
    14  
    15  k8s_yaml('nginx.yaml')
    16  
    17  k8s_resource('lu-only', port_forwards=['28195:80'])