mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-17 05:40:42 -07:00
- Introduced Docker support with CPU-only and GPU-enabled configurations via Dockerfiles and docker-compose files. - Added a .dockerignore file to exclude unnecessary files from Docker images. - Updated bun.lock and package.json to include new dependencies for icon handling. - Enhanced README with Docker usage instructions and deployment options. - Refactored components to utilize new icon libraries for improved UI consistency.
56 lines
469 B
Plaintext
56 lines
469 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
venv/
|
|
|
|
# Build outputs
|
|
build/
|
|
*.egg-info/
|
|
.eggs/
|
|
target/
|
|
|
|
# Keep web/dist for the Docker image
|
|
!web/dist
|
|
|
|
# Development
|
|
.git/
|
|
.github/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Data and logs
|
|
data/
|
|
*.log
|
|
*.sqlite
|
|
*.db
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
docs/
|
|
landing/
|
|
mlx-test/
|
|
|
|
# Test files
|
|
*.test.ts
|
|
*.test.tsx
|
|
*.spec.ts
|
|
*.spec.tsx
|
|
|
|
# Keep these out
|
|
.env
|
|
.env.local
|
|
*.pem
|
|
*.key
|
|
credentials.json
|