church-api/.gitignore
Benjamin Slingo 0c06e159bb Initial commit: Church API Rust implementation
Complete church management system with bulletin management, media processing, live streaming integration, and web interface. Includes authentication, email notifications, database migrations, and comprehensive test suite.
2025-08-19 20:56:41 -04:00

66 lines
570 B
Plaintext

# Rust
/target/
Cargo.lock
# Environment variables
.env
.env.local
.env.*.local
# Database
*.db
*.sqlite
*.sqlite3
# Logs
*.log
server.log
# Editor/IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Uploads and media
uploads/
temp/
*.tmp
# Build artifacts
dist/
build/
# Backup files
backup_*/
*_backup/
# Test files
test_*
*.test
# Android APK
*.apk
# FFmpeg test files
*.mp4
*.ts
*.webp
# Migration scripts (keep tracked but ignore temp ones)
temp_*.sql
debug_*.sql
# Service files
*.service