58 lines
534 B
Plaintext
58 lines
534 B
Plaintext
|
|
# Rust build artifacts
|
||
|
|
**/target/
|
||
|
|
**/*.o
|
||
|
|
**/*.so
|
||
|
|
**/*.a
|
||
|
|
**/*.rlib
|
||
|
|
|
||
|
|
# Cargo lock files (we copy them explicitly)
|
||
|
|
# Cargo.lock
|
||
|
|
|
||
|
|
# IDE files
|
||
|
|
.idea/
|
||
|
|
.vscode/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# macOS
|
||
|
|
.DS_Store
|
||
|
|
**/.DS_Store
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
*.log
|
||
|
|
**/*.log
|
||
|
|
|
||
|
|
# Node modules (for control-center-ui)
|
||
|
|
**/node_modules/
|
||
|
|
**/dist/
|
||
|
|
**/.cache/
|
||
|
|
|
||
|
|
# Test files
|
||
|
|
**/tests/fixtures/
|
||
|
|
**/tmp/
|
||
|
|
**/temp/
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
docs/
|
||
|
|
*.md
|
||
|
|
!README.md
|
||
|
|
|
||
|
|
# Scripts (not needed in container)
|
||
|
|
scripts/
|
||
|
|
|
||
|
|
# Data directories
|
||
|
|
data/
|
||
|
|
**/data/
|
||
|
|
|
||
|
|
# Other
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
*.key
|
||
|
|
*.pem
|
||
|
|
*.crt
|