Loading…
Loading…
Community
How to contribute to Podex.
We welcome contributions from the community!
Set up a local Kind cluster:
kind create cluster --name podex
Clone the repository:
git clone https://github.com/Hritikraj8804/podex.git
cd podex
Backend setup:
cd backend
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload
Frontend setup:
cd frontend
npm install
npm run dev
ruff