本帖最后由 Mirukuteii 于 2018-6-8 00:25 编辑
对于我来说,只要是能写进package里的配置,我都会都写在package里面,
能从configuration.yaml 里面分出去的配置,我绝对不会放在里面,必须要分文件出去......
当然,我不会推荐别人也这么干,但是我自己就是忍不住做这种傻事......不知道有没有和我一样的重度强迫症患者.....
我的configuration.yaml
#============================================================================#
# HomeAssistant核心配置文件
# 编写:Mirukuteii
#============================================================================#
#============================================================================#
# 最重要的两项配置
#----------------------------------------------------------------------------#
# HA基本配置文件
homeassistant: !include configuration/homeassistant.yaml
# 前端HTTP配置文件
http: !include configuration/http.yaml
#============================================================================#
#============================================================================#
# 其它重要配置
#----------------------------------------------------------------------------#
# 传感器配置文件夹
sensor: !include_dir_merge_list sensor
#----------------------------------------------------------------------------#
# 自动化配置文件
automation: !include configuration/automations.yaml
# 前端配置文件
frontend: !include configuration/frontend.yaml
# 前端群组配置文件
group: !include configuration/groups.yaml
# 前端“历史”栏配置文件
history: !include configuration/history.yaml
# 前端“日志”栏配置文件
logbook: !include configuration/logbook.yaml
# 系统日志配置文件
logger: !include configuration/logger.yaml
# 提醒服务配置文件
notify: !include configuration/notify.yaml
# 自定义侧面板配置文件
panel_custom: !include configuration/panel_custom.yaml
# 自定义框架侧面板配置文件
panel_iframe: !include configuration/panel_iframe.yaml
# 脚本配置文件
script: !include configuration/scripts.yaml
# 数据库配置文件
recorder: !include configuration/recorder.yaml
# TTS配置文件
tts: !include configuration/tts.yaml
# 区域配置文件
zone: !include configuration/zone.yaml
#============================================================================#
#============================================================================#
# 其它功能配置
#----------------------------------------------------------------------------#
# 在主面板显示功能介绍
#introduction:
# 在侧面板使用“配置”界面
config:
# 在侧面板使用“地图”界面
map:
# 允许系统自动发现新的设备
discovery:
# 浏览器前端语音助手
conversation:
# IOS发现功能
ios:
# 在侧面板配置界面中启用“云服务”功能
#cloud:
#============================================================================#
|