blob: 37d589703ac3bcc6f7f2b6e13a4065b22e1f0e51 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
TEST_D="./test"
mkdir -p "$TEST_D"
rm -f "$TEST_D/pipe" "$TEST_D/pipegram"
exec ./bin/sfive-hub -db "$TEST_D" -start-pipe-server -pipe "$TEST_D/pipe" -start-pipegram-server -pipegram "$TEST_D/pipegram" -start-web-server -viz-dir "$(pwd)/../viz" -bind=":8000"
|