- Remove BACKLOG.md from git tracking (file kept locally) - Add BACKLOG.md to .gitignore to prevent future commits - Backlog files should be local project documentation, not in version control
27 lines
No EOL
284 B
Text
27 lines
No EOL
284 B
Text
# Development directories
|
|
dev/
|
|
tmp/
|
|
test_files/
|
|
sample_data/
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
.DS_Store
|
|
|
|
# TLS certificates - NEVER commit to repository
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
certbot/
|
|
|
|
# Rust build artifacts
|
|
/target/
|
|
Cargo.lock
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Local project files
|
|
BACKLOG.md |