invoice-processor-ml / .dockerignore
GSoumyajit2005's picture
refactor: Reorganize project structure
4768ab6
raw
history blame contribute delete
468 Bytes
# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*.pyo
*.pyd
.Python
*.so
.eggs
*.egg-info
.mypy_cache
.pytest_cache
# Virtual environments
venv
.venv
env
# IDE
.vscode
.idea
*.swp
*.swo
# Data and outputs (large files)
data/
outputs/
temp/
models/
# Tests (not needed in production)
tests/
# Documentation
docs/
*.md
!README.md
# Jupyter notebooks
*.ipynb
.ipynb_checkpoints
# Docker
Dockerfile
docker-compose*.yml
.dockerignore
# Misc
.env
.env.*
*.log