20f734d54a
- Update app name across all files (manifest, index.html, README, docs) - Update contact email to evershelfproject@gmail.com - Rename Docker service/container/volume to evershelf - Rename localStorage keys: dispensa_* → evershelf_* - Rename SQLite DB reference: dispensa.db → evershelf.db - Update SSH remote to dadaloop82/EverShelf - Update Apache conf file name to evershelf.conf - Update CI workflow Docker image/container names - Update cron job example path - Add data/dispensa.db to .gitignore to prevent accidental commit
23 lines
608 B
Bash
23 lines
608 B
Bash
# EverShelf - Configuration
|
|
# Copy this file to .env and fill in your values
|
|
# cp .env.example .env
|
|
|
|
# Google Gemini AI API Key (required for AI features)
|
|
# Get one at: https://aistudio.google.com/app/apikey
|
|
GEMINI_API_KEY=
|
|
|
|
# Bring! Shopping List credentials (optional)
|
|
# Sign up at: https://www.getbring.com/
|
|
BRING_EMAIL=
|
|
BRING_PASSWORD=
|
|
|
|
# TTS (Text-to-Speech) for cooking mode voice guidance (optional)
|
|
# Works with Home Assistant, or any HTTP endpoint that accepts text
|
|
TTS_URL=
|
|
TTS_TOKEN=
|
|
TTS_METHOD=POST
|
|
TTS_AUTH_TYPE=bearer
|
|
TTS_CONTENT_TYPE=application/json
|
|
TTS_PAYLOAD_KEY=message
|
|
TTS_ENABLED=false
|