ClNoHa
(Claus Hansen)
September 23, 2025, 7:13am
1
I run os and have installed appdaemon add-on, i have test.py and apps.yaml (including test.py) in config/apps/, but according to the log, test.py is not seen by appdaemon
I have tried with other apps, have tried to move the files to config/appdaemon/apps/, and have tried doing a appdaemon.yaml with token and dir for the apps files, but nothing helps
Any ideas on what i might be doing wrong
showup
September 24, 2025, 2:35pm
2
ClNoHa:
run os and have installed appdaemon add-on, i have test.py and apps.yaml (including test.py) in config/apps/, but according to the log, test.py is not seen by appdaemon
I have tried with other apps, have tried to move the files to config/appdaemon/apps/, and have tried doing a appdaemon.yaml with token and dir for the apps files, but nothing helps
Any ideas on what i might be doing wrong
Your appdaemon.yaml should tell AppDaemon where to find the apps.
Example:
appdaemon:
latitude: 0
longitude: 0
elevation: 0
time_zone: UTC
plugins:
HASS:
type: hass
token: YOUR_LONG_LIVED_TOKEN
ha_url: http://homeassistant:8123
appdir: /config/appdaemon/apps
ClNoHa
(Claus Hansen)
September 24, 2025, 4:23pm
3
thanks, tried that but it is like it does not see my appdaemon.yaml; or at least the log states that the appdir is still /config/apps
I run HA os, and had the same problem.
In my case i solved it by searcing for the hello_world app.
sudo find / -name "hello*"
I found it under addon_config/a0d7b954_appdaemon.
So i added the rest of the files accordingly.
addon_config/a0d7b954_appdaemon/appdaemon.yaml
addon_config/a0d7b954_appdaemon/apps/apps.yaml
addon_config/a0d7b954_appdaemon/apps/test_script.py
When i restarted appdaemon it loaded and ran my code.
It feels worng putting additinal stuff in the a0d7b954_appdaemon folder, but it worked for me
Hope this helps