diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-02 01:21:10 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-02 01:21:10 +0000 |
commit | 36e41939772d0441dc023f7b02e96567441b02ec (patch) | |
tree | 2fc9d1027248a46af47b4e99ee58e7d66c6baf42 /sample-config.toml | |
parent | 8bd180f221e1a767934de81dbd99fbfadccc7a93 (diff) | |
download | communique-36e41939772d0441dc023f7b02e96567441b02ec.tar.gz |
execute tick on boot, add real world handler example
Diffstat (limited to '')
-rw-r--r-- | sample-config.toml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/sample-config.toml b/sample-config.toml index a77678c..7cd02f7 100644 --- a/sample-config.toml +++ b/sample-config.toml @@ -1,13 +1,19 @@ domain = "activitybub.xyz" dbPath = "bub.db" +# [[handlers]] +# name = "sample" +# rpc = "cgi" # rename to protocol? +# exec = "sample-cgi-handler.sh" +# interval = "5s" +# dedupWindow = "1m" + [[handlers]] -name = "sample" +name = "autosport" rpc = "cgi" # rename to protocol? -# add response type? like Note -exec = "sample-cgi-handler.sh" -interval = "5s" -dedupWindow = "1m" +exec = "autosport-handler.sh" +interval = "10m" +dedupWindow = "900h" # [[handlers]] # name = "another" |