The LGTM Stack (Loki for logs, Grafana for visualization, Tempo for traces, and Mimir for metrics)
Devbox installed on your system
curl -fsSL https://get.jetpack.io/devbox | bashThis project uses Devbox to manage development dependencies. Devbox automatically sets up the following tools:
kind: For managing local Kubernetes clustersjust: Command runner for project tasks
To start using the development environment:
- Enter the devbox shell:
devbox shellThis will automatically install and configure all required tools.
- Verify the installation:
kind --version
just --version- Exit the devbox shell when you're done:
exitjust is a command runner that helps you run commands defined in a Justfile.
Below are some common commands you can use with the Justfile in this project.
To create a new Kind cluster using the Justfile, run the following command:
just cluster-createTo destroy the Kind cluster, run the following command:
just cluster-destroy