# Understand the application
1. What language/framework is used?
2. What's the application's purpose?
3. How does authentication work?
4. What data does it process?
5. What external services does it connect to?
# Get codebase statistics
cloc . --exclude-dir=node_modules,vendor,venv
tokei .
# Find entry points
grep -rn "app.get\|app.post\|@RequestMapping\|@GetMapping\|Route\|def index" .