A full-stack tool to analyze any public GitHub repo and generate documentation, requirements, and more.
- Professional README.md generation
- requirements.txt extraction
- Markdown/HTML code documentation
- .gitignore, license detection, API doc, code smell detection
- Frontend: React (Vite), Tailwind CSS, shadcn/ui
- Backend: FastAPI, PyGithub, gitpython, pipreqs, pdoc, flake8, radon, pylint
cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reloadcd frontend
npm install
npm run devSee code for the details.