autotasker/config.yaml

40 lines
770 B
YAML
Raw Normal View History

2024-07-22 18:25:30 +00:00
instance:
name: Example company
logo_uri: https://src.lefuturiste.fr/images/lefuturiste-300-300.png
2024-04-27 09:59:43 +00:00
tasks:
2024-07-22 18:25:30 +00:00
do_magic_stuff:
2024-04-27 09:59:43 +00:00
name: Do magic incantation
env:
PYTHONUNBUFFERED: "1"
2024-07-26 13:00:51 +00:00
SIMULATION_SPEED: 11
2024-04-27 09:59:43 +00:00
command:
- /usr/bin/python3
- /home/mbess/workspace/autotasker/examples/do_something_1.py
2024-07-22 18:25:30 +00:00
reindex_db:
2024-04-27 09:59:43 +00:00
name: Reindex the whole database
env: {}
command:
- ls
- /etc/fstab
2024-07-22 18:25:30 +00:00
schedule:
2024-07-23 15:25:22 +00:00
hours: 1
2024-07-22 18:25:30 +00:00
clean_up:
name: Clean up things
env: {}
command:
- cat
- /etc/environment
2024-07-23 15:25:22 +00:00
# schedule:
# "0 * * * * *"
2024-04-27 09:59:43 +00:00
2024-07-24 14:03:44 +00:00
webhooks:
- id: 1
name: "Trigger magic stuff"
token: 988c19fe-fd5d-4887-8210-60e0dc50ba9e
target_tasks:
- do_magic_stuff
debounce_secs: 10