12 lines
240 B
Bash
12 lines
240 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
endpoint="ws://127.0.0.1:8765"
|
||
|
endpoint="ws://127.0.0.1:5678"
|
||
|
appkey="appkey"
|
||
|
channel="foo"
|
||
|
rolename="a_role"
|
||
|
rolesecret="a_secret"
|
||
|
path=events.jsonl
|
||
|
|
||
|
build/satori_publisher $endpoint $appkey $channel $rolename $rolesecret $path
|