41dbd77c2f
- Add professional HTML email template matching CV aesthetic - Implement multipart emails (HTML + plain text fallback) - Configure DreamHost SMTP with SSL (port 465) - Add "light only" color scheme for Gmail iOS compatibility - Include Reply-To header for easy sender response - Add email validation and integration tests - Update .env.example with DreamHost/Gmail SMTP examples - Add .env to .gitignore to protect credentials - Document email template customization and dark mode approach
72 lines
926 B
Plaintext
72 lines
926 B
Plaintext
# Environment variables (contains secrets)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Binaries
|
|
cv-server
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binaries
|
|
*.test
|
|
|
|
# Output
|
|
*.out
|
|
|
|
# Go workspace
|
|
go.work
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temp files
|
|
*.tmp
|
|
*.log
|
|
cv-app
|
|
static/psd
|
|
static/psd/yo DNI.psd
|
|
|
|
# CSS build output (generated by Lightning CSS)
|
|
# We track bundle.min.css for production but ignore dev bundle
|
|
static/dist/bundle.css
|
|
!static/dist/bundle.min.css
|
|
|
|
# Temporary implementation artifacts (prevent clutter)
|
|
*_SUMMARY.md
|
|
*_REPORT.md
|
|
*_COMPLETE.md
|
|
*-COMPLETE.md
|
|
*-FIXES.md
|
|
*-VALIDATION.md
|
|
QUICK_START_*.md
|
|
benchmark_*.sh
|
|
verify_*.sh
|
|
validate_*.sh
|
|
test_*.sh
|
|
final_validation.sh
|
|
|
|
# Coverage reports
|
|
coverage.html
|
|
coverage.out
|
|
*.coverprofile
|
|
.claude
|
|
playwright.config.js
|
|
|
|
# Test artifacts
|
|
tests/screenshots/
|
|
|
|
# Personal learning documentation README (private goals and notes)
|
|
_go-learning/README.md
|