initial commit

This commit is contained in:
John Lancaster
2025-11-14 21:19:38 -06:00
commit 8df03a0200
5 changed files with 43 additions and 0 deletions

3
apps/apps.yaml Normal file
View File

@@ -0,0 +1,3 @@
hello_world:
module: hello
class: HelloWorld

7
apps/hello.py Executable file
View File

@@ -0,0 +1,7 @@
from appdaemon.adapi import ADAPI
class HelloWorld(ADAPI):
def initialize(self):
self.log("Hello from AppDaemon")
self.log("You are now ready to run Apps!")