mirror of
https://github.com/home-assistant/core.git
synced 2025-11-27 03:28:04 +00:00
13 lines
423 B
Python
13 lines
423 B
Python
"""Go2rtc constants."""
|
|
|
|
DOMAIN = "go2rtc"
|
|
|
|
CONF_DEBUG_UI = "debug_ui"
|
|
DEBUG_UI_URL_MESSAGE = "Url and debug_ui cannot be set at the same time."
|
|
HA_MANAGED_API_PORT = 11984
|
|
HA_MANAGED_URL = f"http://localhost:{HA_MANAGED_API_PORT}/"
|
|
HA_MANAGED_UNIX_SOCKET = "/run/go2rtc.sock"
|
|
# When changing this version, also update the corresponding SHA hash (_GO2RTC_SHA)
|
|
# in script/hassfest/docker.py.
|
|
RECOMMENDED_VERSION = "1.9.12"
|