hi guys
please could someone help me. ive install appdaemon via pip3 and created a conf folder in my HA folder with two files
appdaemon.yaml which has the following:
AppDaemon:
logfile: STDOUT
errorfile: STDERR
logsize: 100000
log_generations: 3
threads: 10
cert_path:
cert_verify: True
timezone: = <timezone>
api_port: 5000
api_key:
api_ssl_certificate:
api_ssl_key:
HASS:
ha_url: http://192.168.0.13:8123
ha_key: xxxxx
and an app.yaml with the following:
hello_world:
module: hello
class: HelloWorld
i then created an app folder and placed the hello.py in it
i then ran the following command
$ appdaemon -c /home/homeassistant/conf
and i get the following error
Traceback (most recent call last):
File "/usr/local/bin/appdaemon", line 11, in <module>
sys.exit(main())
File "/usr/local/lib/python3.4/dist-packages/appdaemon/admain.py", line 198, i
n main
config.read_file(open(config_file_conf))
TypeError: invalid file: None
what have i done wrong