Skip to content
Snippets Groups Projects
start_gzweb.sh 295 B
Newer Older
#!/bin/bash

ulimit -c unlimited

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR

./stop_gzweb.sh

if [ ! -d http/client ]
then
  echo "gzweb not initialized, have you run ./deploy.sh yet?"
  exit
fi


./node_modules/.bin/http-server http/client &

cd gzbridge
./ws_server.js &