summaryrefslogtreecommitdiff
path: root/examples/config.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/config.json')
-rw-r--r--examples/config.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/config.json b/examples/config.json
new file mode 100644
index 0000000..6cbdade
--- /dev/null
+++ b/examples/config.json
@@ -0,0 +1,20 @@
+{
+ "secret_file": "./examples/secret.txt",
+
+ "commands": [
+ {
+ "event": "ping",
+ "command": "/bin/echo",
+ "args": [
+ "Got ping event!!"
+ ]
+ },
+ {
+ "event": "push",
+ "command": "/bin/echo",
+ "args": [
+ "Got push event!!"
+ ]
+ }
+ ]
+}