summaryrefslogtreecommitdiff
path: root/examples/config.json
blob: ee0d8903ee7b0aa3601699d9813eda727b37da92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
	"secret_path": "./examples/secret.txt",

	"max_idle_time": "1h",

	"commands": [
		{
			"event": "ping",
			"command": "/bin/echo",
			"args": [
				"Got ping event!!"
			]
		},
		{
			"event": "push",
			"command": "/bin/echo",
			"args": [
				"Got push event!!"
			]
		}
	]
}