mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 21:20:41 +00:00
46 lines
333 B
Text
46 lines
333 B
Text
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
.github/
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.idea/
|
||
|
|
.vscode/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# Rust
|
||
|
|
target/
|
||
|
|
Cargo.lock
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
*.db
|
||
|
|
*.db-shm
|
||
|
|
*.db-wal
|
||
|
|
|
||
|
|
# Data directories
|
||
|
|
data/
|
||
|
|
crabidp.db
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
CONTRIBUTING.md
|
||
|
|
CLAUDE.md
|
||
|
|
docs/
|
||
|
|
|
||
|
|
# Tests
|
||
|
|
tests/
|
||
|
|
|
||
|
|
# CI/CD
|
||
|
|
.github/
|
||
|
|
|
||
|
|
# Config
|
||
|
|
.config/
|
||
|
|
.claude/
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
tmp/
|
||
|
|
*.tmp
|
||
|
|
*.log
|