-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 937 Bytes
/
.env.example
File metadata and controls
28 lines (21 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Home Assistant connection
# dev add-on + dev HA
#HA_URL=http://host.docker.internal:8123
#HA_TOKEN="YOUR LONG LIVED TOKEN FOR YOUR DEV HOME ASSISTANT HERE (WITHOUT QUOTES)"
#dev add-on + prod HA
HA_URL=http://homeassistant.local:8123
HA_TOKEN="YOUR LONG LIVED TOKEN FOR YOUR PROD HOME ASSISTANT HERE (WITHOUT QUOTES)"
# BESS MCP Server - Direct port access (bypasses HA ingress)
# Configure this to point to the BESS add-on's exposed port 8080
BESS_URL=http://homeassistant.local:8080
HA_DB_URL=http://homeassistant.local:8086/api/v2/query
HA_DB_BUCKET=homeassistant/autogen
HA_DB_USER_NAME="YOUR DB USERNAME HERE"
HA_DB_PASSWORD="YOUR DB PASSWORD HERE"
# Container timezone (for log timestamps, etc.)
TZ=Europe/Stockholm
# Development mode
FLASK_DEBUG=true
# Test mode - set to true to prevent hardware writes (battery control, TOU segments)
# In production/add-on deployment, this should be false or omitted
HA_TEST_MODE=true