Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.py - github.com/ClusterM/google-assistant-smart-home.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63b8defb94c5f20bf8246d2f0cc34f53600f398b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import logging

CLIENT_ID = "YOUR_SMART_HOME_NAME"
CLIENT_SECRET = "YOUR_SECRET"
API_KEY = "YOUR_API_KEY"
USERS_DIRECTORY = "/home/google_home/users"
TOKENS_DIRECTORY = "/home/google_home/tokens"
DEVICES_DIRECTORY = "/home/google_home/devices"

# Uncomment to enable logging
#LOG_FILE = "/var/log/google-home.log"
#LOG_LEVEL = logging.DEBUG
#LOG_FORMAT = "%(asctime)s %(remote_addr)s %(user)s %(message)s"
#LOG_DATE_FORMAT = "%Y-%m-%d %H:%M:%S"