Ports prior voice assistant research and prototypes from devl/Devops into the Minerva repo. Includes: - docs/: architecture, wake word guides, ESP32-S3 spec, hardware buying guide - scripts/: voice_server.py, voice_server_enhanced.py, setup scripts - hardware/maixduino/: edge device scripts with WiFi credentials scrubbed (replaced hardcoded password with secrets.py pattern) - config/.env.example: server config template - .gitignore: excludes .env, secrets.py, model blobs, ELF firmware - CLAUDE.md: Minerva product context and connection to cf-voice roadmap
7 lines
282 B
Text
7 lines
282 B
Text
# Copy this file to secrets.py and fill in your values
|
|
# secrets.py is gitignored — never commit it
|
|
SECRETS = {
|
|
"wifi_ssid": "YourNetworkName",
|
|
"wifi_password": "YourWiFiPassword",
|
|
"voice_server_url": "http://10.1.10.71:5000", # replace with your Minerva server IP
|
|
}
|