
- Created comprehensive README.md with setup instructions and API overview - Removed 10 internal development .md files - Updated .gitignore to prevent future development docs from being tracked - Repository now has clean, professional documentation structure
110 lines
1.2 KiB
Plaintext
110 lines
1.2 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
|
|
|
|
# Development docs (keep only README.md)
|
|
*_GUIDE.md
|
|
*_PLAN.md
|
|
*_SUMMARY.md
|
|
*_STEPS.md
|
|
*_MIGRATION*.md
|
|
*_COMPLETE.md
|
|
README_*.md
|