- 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.
43 lines
423 B
Plaintext
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
|