Spaces:
Sleeping
Sleeping
| # Git | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # CI | |
| .github/ | |
| # Docker | |
| .dockerignore | |
| docker-compose.yml | |
| # Python | |
| **/__pycache__/ | |
| **/*.py[cod] | |
| **/*$py.class | |
| **/.pytest_cache/ | |
| **/.coverage | |
| **/htmlcov/ | |
| # Environments | |
| .env.example | |
| .env.local | |
| **/.venv | |
| **/env/ | |
| **/venv/ | |
| # IDE | |
| .idea | |
| .vscode | |
| **/*.swp | |
| **/*.swo | |
| # Debug files | |
| debug_*.py | |
| *_debug.py | |
| run_log.txt | |
| *.log | |
| # Notebook files | |
| **/.ipynb_checkpoints | |
| notebook_version/ | |
| # Do NOT exclude data directory, as we need to process PDFs during docker build if needed | |
| #/data | |
| # Misc | |
| .DS_Store | |
| # Python | |
| *.so | |
| .Python | |
| env/ | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Virtual Environment | |
| ENV/ | |
| .env | |
| # OS specific | |
| .DS_Store | |
| # Ignore PDF data files (will be mounted at runtime) | |
| data/*.pdf | |
| # Pre-processed data (will be generated inside the container) | |
| processed_data/ | |
| # Environment and secrets | |
| .env | |
| .venv | |
| venv/ | |
| ENV/ | |
| env/ | |
| .env.local | |
| .env.development.local | |
| .env.test.local | |
| .env.production.local | |
| # IDE specific files | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| # Mac OS | |
| .DS_Store | |
| # Git related | |
| .git/ | |
| .gitignore | |
| .github/ | |
| # Local data - exclude PDFs but include processed data | |
| /data/*.pdf | |
| /data/raw/ | |
| # Debug and log files | |
| *.log | |
| debug_*.py | |
| *_debug.py | |
| debug_*.log | |
| run_log.txt | |
| # Test related | |
| .coverage | |
| .pytest_cache/ | |
| pytest_cache/ | |
| htmlcov/ | |
| # Build artifacts | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so |