-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 1.18 KB
/
.env.example
File metadata and controls
29 lines (23 loc) · 1.18 KB
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
29
# HomeConnect API Credentials
# Get these from https://developer.home-connect.com/applications
HOME_CONNECT_CLIENT_ID=your-client-id-here
HOME_CONNECT_CLIENT_SECRET=your-client-secret-here
# OAuth Redirect URI
# Must exactly match the one in the application registration
HOME_CONNECT_REDIRECT_URI=http://localhost:3000/callback
# Home Appliance ID (HAID)
# Leave empty initially - you can find this after the first auth flow
# Display all registered devices with `make status` or `python -m scripts.device_status`
# The HAID is in the JSON output under `data.homeappliances[].haid`
HOME_CONNECT_HAID=
# Scopes for the HomeConnect API
# Requested during the auth flow (not during application registration)
HOME_CONNECT_SCOPE=IdentifyAppliance Control CoffeeMaker Settings Monitor
# Optional: Path to token file (default: tokens.json)
# HOME_CONNECT_TOKEN_PATH=tokens.json
# Optional: API Token for HTTP server authentication
# COFFEE_API_TOKEN=my-token
# Optional: Hostname for SSL certificate (e.g., your-hostname.local)
# Used when creating the certificate: make cert
# If set, this hostname will be added to the certificate in addition to localhost and *.local
# CERT_HOSTNAME=your-hostname.local