- Go >= 1.25.7
- Helm >= 3.16.1
- Python >= 3.8
- Node >= 20
This project uses Tilt to manage the development environment. Tilt will watch for changes in the project and automatically rebuild the Docker image and redeploy the application in the current Kubernetes context.
See this example using a kind cluster:
kind create clusterthen:
make tilt-upHit space to open the Tilt dashboard in your browser and here you can see the logs and status of every resource deployed.
The development environment creates automatically a user for JupyterHub. The user is created with the following credentials:
- Username:
mr - Password:
1234
You can reach the jupter notebook at http://localhost:8086/user/mr/lab.
Tilt will watch for file changes in the clients/python folder and build/upload the wheel output to the notebook pod, you can find the wheel under the ~/wheels folder.
If you see the following error message when tilt builds the image, try setting DOCKER_BUILDKIT=0:
DOCKER_BUILDKIT=0 make tilt-up