PickPod is a lightweight file drop service that lets users upload and download files using a 6-digit code without logging in.
backend/FastAPI backendfrontend/React + Ant Design frontend
cd backend
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload --port 8000cd frontend
npm install
npm run devThe default API base URL is http://localhost:8000. Set VITE_API_BASE_URL to
override it in the frontend.
Uploads default to 7 days and can be customized with ttl_days (1-30 days).