98 lines
949 B
Plaintext
98 lines
949 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
# Python lib directories (but not frontend/lib)
|
|
backend/lib/
|
|
backend/lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# FastAPI / Uvicorn
|
|
*.log
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Node
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
build/
|
|
.vercel
|
|
|
|
# Production
|
|
/build
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Local env files
|
|
.env
|
|
.env*.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Docker
|
|
postgres_data/
|
|
|
|
# Essentia models (large files, download separately)
|
|
backend/models/*.pb
|
|
backend/models/*.json
|
|
|
|
# Audio analysis cache
|
|
*.peaks.json
|
|
.audio_cache/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
coverage/
|
|
*.cover
|
|
.hypothesis/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# MacOS
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|