graphRAG / .dockerignore
nvtitan's picture
Upload 24 files
e884643 verified
raw
history blame contribute delete
851 Bytes
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
# Virtual Environments
venv/
env/
.venv/
ENV/
# Environment Variables
.env
.env.*
!.env.example
# Data (exclude from image - will be created at runtime)
data/
uploads/
*.pdf
*.pkl
*.faiss
*.index
# Logs (exclude from image)
logs/
*.log
# Cache
cache/
.cache/
__pycache__/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*.sublime-*
# OS
.DS_Store
Thumbs.db
desktop.ini
# Testing
.coverage
htmlcov/
.pytest_cache/
.tox/
*.cover
tests/
# Database files
*.db
*.sqlite
*.sqlite3
# Git
.git/
.gitignore
.gitattributes
# Documentation
docs/
*.md
!README.md
# Deployment configs (not needed in container)
railway.toml
nixpacks.toml
Procfile
modal_app.py
fly.toml
vercel.json
heroku.yml
docker-compose*.yml
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
# Misc
*.bak
*.tmp
*.temp