├── .circleci └── config.yml ├── .gitignore ├── 0-base ├── Dockerfile ├── Tiltfile ├── app.py ├── kubernetes.yaml ├── requirements.txt ├── static │ └── pets.png └── templates │ └── index.html ├── 1-measured ├── Dockerfile ├── Tiltfile ├── app.py ├── kubernetes.yaml ├── now.py ├── requirements.txt ├── static │ └── pets.png └── templates │ └── index.html ├── 2-optimize-dockerfile ├── Dockerfile ├── Tiltfile ├── app.py ├── kubernetes.yaml ├── now.py ├── requirements.txt ├── static │ └── pets.png └── templates │ └── index.html ├── 3-recommended ├── Dockerfile ├── Tiltfile ├── app.py ├── kubernetes.yaml ├── now.py ├── requirements.txt ├── static │ └── pets.png └── templates │ └── index.html ├── LICENSE ├── NOTICE ├── README.md ├── debugger-examples ├── README.md ├── remote-pdb │ ├── Dockerfile │ ├── README.md │ ├── Tiltfile │ ├── app.py │ ├── kubernetes.yaml │ ├── requirements.txt │ ├── static │ │ └── pets.png │ └── templates │ │ └── index.html └── web-pdb │ ├── Dockerfile │ ├── README.md │ ├── Tiltfile │ ├── app.py │ ├── kubernetes.yaml │ ├── requirements.txt │ ├── static │ └── pets.png │ └── templates │ └── index.html └── test ├── test.ps1 └── test.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | start-time.txt 2 | __py-cache__ 3 | *.pyc -------------------------------------------------------------------------------- /0-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/0-base/Dockerfile -------------------------------------------------------------------------------- /0-base/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/0-base/Tiltfile -------------------------------------------------------------------------------- /0-base/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/0-base/app.py -------------------------------------------------------------------------------- /0-base/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/0-base/kubernetes.yaml -------------------------------------------------------------------------------- /0-base/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | -------------------------------------------------------------------------------- /0-base/static/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/0-base/static/pets.png -------------------------------------------------------------------------------- /0-base/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/0-base/templates/index.html -------------------------------------------------------------------------------- /1-measured/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/Dockerfile -------------------------------------------------------------------------------- /1-measured/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/Tiltfile -------------------------------------------------------------------------------- /1-measured/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/app.py -------------------------------------------------------------------------------- /1-measured/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/kubernetes.yaml -------------------------------------------------------------------------------- /1-measured/now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/now.py -------------------------------------------------------------------------------- /1-measured/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | -------------------------------------------------------------------------------- /1-measured/static/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/static/pets.png -------------------------------------------------------------------------------- /1-measured/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/1-measured/templates/index.html -------------------------------------------------------------------------------- /2-optimize-dockerfile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/Dockerfile -------------------------------------------------------------------------------- /2-optimize-dockerfile/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/Tiltfile -------------------------------------------------------------------------------- /2-optimize-dockerfile/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/app.py -------------------------------------------------------------------------------- /2-optimize-dockerfile/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/kubernetes.yaml -------------------------------------------------------------------------------- /2-optimize-dockerfile/now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/now.py -------------------------------------------------------------------------------- /2-optimize-dockerfile/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | -------------------------------------------------------------------------------- /2-optimize-dockerfile/static/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/static/pets.png -------------------------------------------------------------------------------- /2-optimize-dockerfile/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/2-optimize-dockerfile/templates/index.html -------------------------------------------------------------------------------- /3-recommended/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/Dockerfile -------------------------------------------------------------------------------- /3-recommended/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/Tiltfile -------------------------------------------------------------------------------- /3-recommended/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/app.py -------------------------------------------------------------------------------- /3-recommended/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/kubernetes.yaml -------------------------------------------------------------------------------- /3-recommended/now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/now.py -------------------------------------------------------------------------------- /3-recommended/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | -------------------------------------------------------------------------------- /3-recommended/static/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/static/pets.png -------------------------------------------------------------------------------- /3-recommended/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/3-recommended/templates/index.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/README.md -------------------------------------------------------------------------------- /debugger-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/README.md -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/Dockerfile -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/README.md -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/Tiltfile -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/app.py -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/kubernetes.yaml -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/requirements.txt -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/static/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/static/pets.png -------------------------------------------------------------------------------- /debugger-examples/remote-pdb/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/remote-pdb/templates/index.html -------------------------------------------------------------------------------- /debugger-examples/web-pdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/Dockerfile -------------------------------------------------------------------------------- /debugger-examples/web-pdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/README.md -------------------------------------------------------------------------------- /debugger-examples/web-pdb/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/Tiltfile -------------------------------------------------------------------------------- /debugger-examples/web-pdb/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/app.py -------------------------------------------------------------------------------- /debugger-examples/web-pdb/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/kubernetes.yaml -------------------------------------------------------------------------------- /debugger-examples/web-pdb/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | web-pdb==1.5.3 3 | -------------------------------------------------------------------------------- /debugger-examples/web-pdb/static/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/static/pets.png -------------------------------------------------------------------------------- /debugger-examples/web-pdb/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/debugger-examples/web-pdb/templates/index.html -------------------------------------------------------------------------------- /test/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/test/test.ps1 -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilt-dev/tilt-example-python/HEAD/test/test.sh --------------------------------------------------------------------------------