mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
14 lines
184 B
Bash
14 lines
184 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
#Move to the base folder
|
||
|
cd `dirname $0`
|
||
|
|
||
|
#start etherpad lite
|
||
|
../../../bin/run.sh &
|
||
|
sleep 10
|
||
|
|
||
|
#start remote runner
|
||
|
node remote_runner.js
|
||
|
|
||
|
kill $!
|
||
|
kill $(cat /tmp/sauce.pid)
|