mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 13:10:42 +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
29 lines
420 B
Text
29 lines
420 B
Text
# Rust build artifacts
|
|
/target/
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Cargo
|
|
# Note: Cargo.lock should be committed for applications (not ignored)
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Application-specific
|
|
/keys/
|
|
/jwks.json
|
|
/private_key.json
|
|
/data/jwks.json
|
|
/data/private_key.pem
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Environment and config (optional - uncomment if you want to ignore local configs)
|
|
# config.toml
|
|
# .env
|