Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Git
.git
.gitignore
.gitattributes

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
dist/
build/
*.egg
.pytest_cache
.mypy_cache
.ruff_cache
htmlcov/
.coverage

# Virtual environments
venv/
env/
ENV/
.venv

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Project specific
.env
.env.local
*.log
*.pid
*.seed
*.pid.lock

# Documentation
docs/
*.md
!README.md

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml

# Tests
tests/
*.test.py

# Examples (not needed in production image)
examples/

# Claude
.claude/

# Soniox docs
soniox-docs/
soniox-pro-sdk/
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ SONIOX_API_KEY=your_api_key_here
# Optional: Override API endpoints
# SONIOX_API_BASE_URL=https://api.soniox.com
# SONIOX_REALTIME_WEBSOCKET_URL=wss://stt-rt.soniox.com/transcribe-websocket

# Web Server Configuration (for Docker/web interface)
PORT=4346
LOG_LEVEL=info

# Audio Configuration (optional, for Linux with PulseAudio)
# PULSE_SERVER=/run/user/1000/pulse/native
Loading
Loading