58 lines
682 B
Plaintext
58 lines
682 B
Plaintext
# Ignore git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Ignore frontend files (not needed for backend)
|
|
frontend/node_modules
|
|
frontend/.next
|
|
frontend/out
|
|
frontend/.turbo
|
|
|
|
# Ignore documentation
|
|
README.md
|
|
docs/
|
|
|
|
# Ignore results and cache
|
|
results/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.pytest_cache/
|
|
.coverage
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Ignore development files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Ignore Mac files
|
|
.DS_Store
|
|
|
|
# Ignore test files
|
|
**/tests/
|
|
**/test_*.py
|
|
**/*_test.py
|
|
|
|
# Ignore assets not needed for backend
|
|
assets/
|
|
web_screenshot/
|
|
llm_logo/
|
|
report/
|
|
|
|
# Ignore lock files (use requirements.txt)
|
|
uv.lock
|
|
poetry.lock
|
|
|
|
# Ignore CLI (if not needed)
|
|
cli/
|
|
|