minerva/hardware/maixduino/secrets.py.example
pyr0ball 173f7f37d4 feat: import mycroft-precise work as Minerva foundation
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
2026-04-06 22:21:12 -07:00

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
}