- Add MIT LICENSE (entire current codebase is MIT-safe per cf-licensing review) - Add THIRD_PARTY_LICENSES.md (Precise/Whisper/Piper/pyannote/MaixPy) - Add CLAUDE.md to .gitignore (BSL 1.1 + docs-location policy) - Fix maix_voice_client.py: load credentials from secrets.py instead of inline constants (matches existing secrets.py.example pattern) - Remove CLAUDE.md from git tracking
32 lines
340 B
Text
32 lines
340 B
Text
# Developer context (BSL 1.1 + docs-location policy)
|
|
CLAUDE.md
|
|
|
|
# Credentials
|
|
secrets.py
|
|
config/.env
|
|
*.env
|
|
!*.env.example
|
|
|
|
# Models (large binary files)
|
|
models/*.pb
|
|
models/*.pb.params
|
|
models/*.net
|
|
models/*.tflite
|
|
models/*.kmodel
|
|
|
|
# OEM firmware blobs
|
|
*.elf
|
|
*.7z
|
|
*.bin
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Logs
|
|
logs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|