church-api/.gitignore
Benjamin Slingo 7ab47d6017 Clean up repository: remove shell scripts, test files, and temporary utilities
- Removed all .fish and .sh utility scripts
- Removed test SQL files and debug scripts
- Removed temp files and symlinks
- Removed HTML test files and Python migration helpers
- Updated .gitignore to prevent these files from being tracked again

Repository now contains only essential project code and migrations.
2025-08-19 21:00:09 -04:00

101 lines
1 KiB
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
# Serena AI assistant files
.serena/
# Separate projects
church-website-axum/
# Shell scripts and utilities (keep only essential ones)
*.fish
*.sh
fix_*.py
*test*.sql
*debug*.sql
temp_*.txt
temp_*.sql
debug_*.fish
debug_*.sh
# Symlinks and temp files
claude
current
# HTML test files
*test*.html
# Binary files that shouldn't be versioned
*.apk
rtsda-android
# SQL migration helpers (keep actual migrations)
check_*.sql
clean_*.sql
force_*.sql
validate_*.sql
verify_*.sql