mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 21:20:41 +00:00
Cargo.lock should be committed for applications (not libraries) to ensure reproducible builds across environments. This is required for Docker builds and is the recommended practice per Rust guidelines. Removed Cargo.lock from: - .gitignore - .dockerignore This fixes the Docker build error: ERROR: "/Cargo.lock": not found
45 lines
375 B
Text
45 lines
375 B
Text
# Git
|
|
.git/
|
|
.gitignore
|
|
.github/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Rust
|
|
target/
|
|
# Note: Cargo.lock is needed for reproducible builds
|
|
|
|
# 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
|