73 lines
782 B
Plaintext
73 lines
782 B
Plaintext
# Python cache and virtual environments
|
|
last_checkpoint.npz
|
|
*.pyc
|
|
__pycache__/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
*.egg-info/
|
|
|
|
# Build directories
|
|
/build
|
|
/cmake-build-*
|
|
CMakeFiles/
|
|
*.cmake
|
|
|
|
# Rust build artifacts
|
|
/target/
|
|
/rust/target/
|
|
rust/Cargo.lock
|
|
Cargo.lock
|
|
|
|
# Simulation output files
|
|
out.out
|
|
output.json
|
|
*.bin
|
|
*.png
|
|
*.mp4
|
|
*.avi
|
|
traj.bin
|
|
trajectory.bin
|
|
test_output.bin
|
|
|
|
# Web frontend
|
|
web/node_modules/
|
|
web/dist/
|
|
web/.vite/
|
|
web/coverage/
|
|
web/build/
|
|
|
|
# Tauri desktop GUI
|
|
src-tauri/target/
|
|
src-tauri/gen/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime and temporary files
|
|
.tmp/
|
|
.temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db |