Loading…
Loading…
Getting Started
Detailed setup guide for Podex and its dependencies.
Podex works with any local Kubernetes cluster. Here's how to set one up:
Using Kind (Kubernetes-in-Docker):
kind create cluster --name podex
kubectl cluster-info
Using Minikube:
minikube start
kubectl cluster-info
~/.kube/configgit clone https://github.com/Hritikraj8804/podex.git
cd podex
docker compose up --build
This builds:
8000) Python FastAPI server5173) Nginx serving React app + proxying APIAccess the UI at http://localhost:3000.
Backend:
GEMINI_API_KEY or GOOGLE_API_KEY API key for Google GeminiOPENAI_API_KEY API key for OpenAIOPENAI_BASE_URL Custom endpoint for self-hosted LLM serversOPENAI_MODEL Model name (e.g. gpt-4o-mini)DOCKER_MODE Set to true in Docker to enable address patchingFrontend:
VITE_API_URL API daemon address (default: http://localhost:8000)