github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/integration/ignores/Tiltfile (about) 1 # -*- mode: Python -*- 2 3 include('../Tiltfile') 4 5 k8s_yaml('deployment.yaml') 6 docker_build('ignores-image', 7 '.', 8 ignore=['ignored_by_tiltfile.txt'], 9 live_update=[ 10 sync('.', '/app'), 11 run('/app/compile.sh'), 12 run('/app/restart.sh'), 13 ]) 14 15 k8s_resource("ignores", port_forwards=["31234:8000"])