- Removed test scripts (test_*.py, tts-debug-script.py) - Removed test output files (tts_test_output.mp3, test-cors.html) - Removed redundant static/js/app.js (using TypeScript dist/ instead) - Removed outdated setup-script.sh - Removed Python cache directory (__pycache__) - Removed Claude IDE local settings (.claude/) - Updated .gitignore with better patterns for: - Test files - Debug scripts - Claude IDE settings - Standalone compiled JS This cleanup reduces repository size and removes temporary/debug files that shouldn't be version controlled. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
82 lines
801 B
Plaintext
82 lines
801 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
.env
|
|
|
|
# Flask
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript
|
|
static/js/dist/
|
|
*.tsbuildinfo
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
temp/
|
|
tmp/
|
|
|
|
# Audio files (for testing)
|
|
*.mp3
|
|
*.wav
|
|
*.ogg
|
|
|
|
# Local environment
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
.env.development
|
|
.env.staging
|
|
|
|
# VAPID keys
|
|
vapid_private.pem
|
|
vapid_public.pem
|
|
|
|
# Secrets management
|
|
.secrets.json
|
|
.master_key
|
|
secrets.db
|
|
*.key
|
|
|
|
# Test files
|
|
test_*.py
|
|
*_test_output.*
|
|
test-*.html
|
|
*-debug-script.py
|
|
|
|
# Claude IDE
|
|
.claude/
|
|
|
|
# Standalone compiled JS (use dist/ instead)
|
|
static/js/app.js
|