Spaces:
Build error
Build error
| # ============================================================================== | |
| # .gitignore - Job Application Agent | |
| # Prevents committing unnecessary files to GitHub | |
| # ============================================================================== | |
| # ============================================================================== | |
| # PYTHON | |
| # ============================================================================== | |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| pip-wheel-metadata/ | |
| share/python-wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| MANIFEST | |
| # PyInstaller | |
| *.manifest | |
| *.spec | |
| # Installer logs | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| # Unit test / coverage reports | |
| htmlcov/ | |
| .tox/ | |
| .nox/ | |
| .coverage | |
| .coverage.* | |
| .cache | |
| nosetests.xml | |
| coverage.xml | |
| *.cover | |
| *.py,cover | |
| .hypothesis/ | |
| .pytest_cache/ | |
| # Translations | |
| *.mo | |
| *.pot | |
| # Django stuff: | |
| *.log | |
| local_settings.py | |
| db.sqlite3 | |
| db.sqlite3-journal | |
| # Flask stuff: | |
| instance/ | |
| .webassets-cache | |
| # Scrapy stuff: | |
| .scrapy | |
| # Sphinx documentation | |
| docs/_build/ | |
| # PyBuilder | |
| target/ | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # IPython | |
| profile_default/ | |
| ipython_config.py | |
| # pyenv | |
| .python-version | |
| # pipenv | |
| Pipfile.lock | |
| # PEP 582 | |
| __pypackages__/ | |
| # Celery stuff | |
| celerybeat-schedule | |
| celerybeat.pid | |
| # SageMath parsed files | |
| *.sage.py | |
| # Environments | |
| .env | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| # Spyder project settings | |
| .spyderproject | |
| .spyproject | |
| # Rope project settings | |
| .ropeproject | |
| # mkdocs documentation | |
| /site | |
| # mypy | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| # Pyre type checker | |
| .pyre/ | |
| # ============================================================================== | |
| # PROJECT SPECIFIC | |
| # ============================================================================== | |
| # Logs | |
| logs/ | |
| *.log | |
| !logs/.gitkeep | |
| # Models and checkpoints | |
| models/*.pt | |
| models/*.pth | |
| models/*.pkl | |
| models/checkpoints/ | |
| !models/.gitkeep | |
| # Data files | |
| data/raw/ | |
| data/processed/ | |
| !data/sample_jobs.json | |
| !data/sample_resume.json | |
| # Output and cache | |
| output/ | |
| cache/ | |
| *.cache | |
| !output/.gitkeep | |
| !cache/.gitkeep | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |
| *.temp | |
| # ============================================================================== | |
| # IDE & EDITOR | |
| # ============================================================================== | |
| # Visual Studio Code | |
| .vscode/ | |
| *.code-workspace | |
| # PyCharm | |
| .idea/ | |
| *.iml | |
| # Sublime Text | |
| *.sublime-project | |
| *.sublime-workspace | |
| # Vim | |
| *.swp | |
| *.swo | |
| *~ | |
| # Emacs | |
| *~ | |
| \#*\# | |
| .\#* | |
| # VS Code workspace | |
| .vscode-remote | |
| # ============================================================================== | |
| # OPERATING SYSTEMS | |
| # ============================================================================== | |
| # macOS | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| *.app | |
| # Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| $RECYCLE.BIN/ | |
| # Linux | |
| .directory | |
| # ============================================================================== | |
| # MISCELLANEOUS | |
| # ============================================================================== | |
| # API Keys and secrets (already covered by .env above) | |
| secrets.yaml | |
| secrets.json | |
| *.key | |
| *.pem | |
| # Database files | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| # Compressed files | |
| *.zip | |
| *.tar | |
| *.tar.gz | |
| *.rar | |
| *.7z | |
| # Node modules (if using any frontend tools) | |
| node_modules/ | |
| npm-debug.log | |
| yarn-error.log | |
| # Package manager locks (in some cases) | |
| # Uncomment if you want to ignore lock files | |
| # package-lock.json | |
| # yarn.lock | |
| # ============================================================================== | |
| # GIT | |
| # ============================================================================== | |
| # Merge/rebase files | |
| *.orig | |
| MERGE_HEAD | |
| MERGE_MSG | |
| # ============================================================================== | |
| # HUGGING FACE SPECIFIC | |
| # ============================================================================== | |
| # Cache from Hugging Face | |
| .huggingface/ | |
| hf_cache/ | |
| # Weights and biases | |
| wandb/ | |
| *.wandb | |
| # ============================================================================== | |
| # NOTES | |
| # ============================================================================== | |
| # This .gitignore prevents: | |
| # 1. Large model files from being committed | |
| # 2. Environment files with sensitive data | |
| # 3. Generated logs and temporary files | |
| # 4. IDE configuration files | |
| # 5. OS-specific files | |
| # | |
| # Important files that ARE tracked: | |
| # - src/ (all source code) | |
| # - tests/ (all test code) | |
| # - config/ (configuration files - except secrets) | |
| # - docs/ (documentation) | |
| # - examples/ (example scripts) | |
| # - scripts/ (utility scripts) | |
| # - .github/workflows/ (CI/CD) | |
| # - kubernetes/ (deployment configs) | |
| # - app.py (main entry point) | |
| # - requirements.txt (dependencies) | |
| # - README.md (documentation) | |
| # - LICENSE (license file) | |
| # - .gitignore (this file) | |
| # ============================================================================== | |