barycenter/.gitignore
Till Wegmueller 0ce360f004
fix: commit Cargo.lock for reproducible builds
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
2025-11-29 16:14:39 +01:00

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