Version 1.0

This commit is contained in:
2026-01-19 16:35:12 +01:00
parent bc3993db2b
commit d008d2028f
6 changed files with 180 additions and 0 deletions

8
defaults/config.yaml Normal file
View File

@@ -0,0 +1,8 @@
# 1. List libraries to install at startup
dependencies:
- datetime
# 2. Define jobs (Script Name + Cron Schedule)
jobs:
- script: "hello_world.py"
schedule: "* * * * *" # Runs every minute

3
defaults/hello_world.py Normal file
View File

@@ -0,0 +1,3 @@
import datetime
print("Hello world")
print(f"the current date & time is: {datetime.datetime.now()}")