Files
noteflow/.dockerignore
Travis Vasceannie 97d8b9d346 chore: update .dockerignore to exclude additional build artifacts
- Added entries to .dockerignore for Rust/Tauri client build artifacts and Node modules to prevent unnecessary files from being included in Docker images.
- Improved organization of ignored files for better clarity.
2026-01-07 04:16:36 +00:00

43 lines
423 B
Plaintext

# Git
.git
.gitignore
# Python
.venv
__pycache__
**/__pycache__
*.pyc
*.pyo
*.pyd
# Caches
.mypy_cache
.ruff_cache
.pytest_cache
# Environment
.env
.env.*
# OS
.DS_Store
# Project-specific
logs/
spikes/
.spikes/
.spike_cache/
# Client build artifacts (Rust/Tauri)
client/src-tauri/target/
**/target/
# Node modules
client/node_modules/
**/node_modules/
# IDE / Devcontainer
.devcontainer/
.vscode/
*.code-workspace