- Update Dockerfile to enhance audio setup and user management - Modify setup-audio.sh to add robust PulseAudio socket and device checks - Add proper user and directory permissions for audio and model directories - Simplify container startup process and improve audio device detection
92 lines
917 B
Plaintext
92 lines
917 B
Plaintext
# Dependencies
|
|
node_modules
|
|
dist
|
|
__pycache__/
|
|
.mypy_cache/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
.cursorrules
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
docker-compose.yaml
|
|
docker-compose.override.yml
|
|
docker-compose.override.yaml
|
|
|
|
# IDEs and editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Home Assistant
|
|
.storage
|
|
.cloud
|
|
.google.token
|
|
home-assistant.log*
|
|
home-assistant_v2.db
|
|
home-assistant_v2.db-*
|
|
.
|
|
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
coverage/*
|
|
coverage/
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.*.template
|
|
|
|
.cursor/
|
|
.cursor/*
|
|
|
|
.bun/
|
|
.cursorconfig
|
|
bun.lockb
|
|
|
|
# MkDocs
|
|
site/
|
|
.site/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
models/ |