Platform restructured into crates/, added AI service and detector,
migrated control-center-ui to Leptos 0.8
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
|