| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # Git | |
| .git/ | |
| .gitignore | |
| # Data files (will be regenerated) | |
| backend/data/students.json | |
| # Documentation (not needed in runtime) | |
| *.md | |
| !README.md | |
| # Local development files | |
| .env | |
| .env.local | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Logs | |
| *.log | |
| # PowerShell scripts (local dev only) | |
| *.ps1 | |
| # Backup files | |
| *.backup | |
| *.bak | |
| # Render config (not needed for HuggingFace) | |
| render.yaml | |
| # Railway config (not needed for HuggingFace) | |
| Procfile | |
| runtime.txt | |