63 lines
663 B
Plaintext
63 lines
663 B
Plaintext
# Rust build artifacts
|
|
target/
|
|
**/*.rs.bk
|
|
Cargo.lock # Let Docker resolve dependencies fresh
|
|
|
|
# Node.js
|
|
web/node_modules/
|
|
web/dist/
|
|
web/.vite/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Development files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Documentation (can be excluded for production)
|
|
README.md
|
|
DEPLOYMENT.md
|
|
STATUS.md
|
|
*.md
|
|
|
|
# Test files
|
|
test_*
|
|
*_test.rs
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Binary outputs
|
|
*.bin
|
|
trajectory.bin
|
|
|
|
# Development scripts (optional)
|
|
start_interfaces.sh
|
|
test_interfaces.sh
|
|
|
|
# Tauri (not needed for Docker web deployment)
|
|
src-tauri/
|