Skip to content

Commit

Permalink
Revert "Fix for unary descriptor expected (#156)" (#159)
Browse files Browse the repository at this point in the history
This reverts commit 4e10c17.
  • Loading branch information
silkroadnomad authored Oct 13, 2021
1 parent 79eb196 commit f57b074
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contrib/docker/dapp/dapp-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ export METEOR_SETTINGS=$(cat /home/doichain/data/dapp/settings.json)
export PORT=$HTTP_PORT
export ROOT_URL=http://$DAPP_HOST:$DAPP_PORT

if [[ $1 = 'build' ]]; then
_BUILD=$1
if [ $_BUILD = 'build' ]; then
git -C /home/doichain/dapp pull origin master
echo "starting creating bundle $DAPP_HOST:$DAPP_PORT"
rm -rf /home/doichain/dapp/bundle
Expand All @@ -25,5 +26,5 @@ if [ -e $pidfile ]; then
fi
echo "starting dapp via node bundle"
cd /home/doichain/dapp
node build/bundle/main.js
nohup node build/bundle/main.js > dapp.log 2>&1 & echo $! > dapp.pid
sleep 5

0 comments on commit f57b074

Please sign in to comment.