LocalMate / .dockerignore
Cuong2004's picture
Fix: include README.md for pyproject.toml
0112b8f
raw
history blame contribute delete
351 Bytes
# Ignore virtual environment
.venv/
venv/
env/
# Ignore git
.git/
.gitignore
# Ignore environment files (secrets in HF Settings)
.env
.env.*
# Ignore Python cache
*.pyc
*.pyo
__pycache__/
*.egg-info/
.eggs/
# Ignore tests and docs
tests/
docs/
DEPLOYMENT.md
# Ignore IDE
.vscode/
.idea/
*.swp
*.swo
# Ignore local files
*.log
*.sqlite
.DS_Store