Skip to content

Commit

Permalink
deploy: using python3
Browse files Browse the repository at this point in the history
  • Loading branch information
vincepandolfo committed Nov 9, 2017
1 parent 207aea3 commit 71aa325
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ check_dep webpack
check_dep truffle
check_dep npm
check_dep parity
check_dep python
check_dep pip
check_dep python3
check_dep pip3

HOME=$(pwd)
cd $HOME/truffle && truffle build
cd $HOME/dapp && npm install && webpack && ./add_to_parity.sh
cd $HOME/parity && ./run.sh &
cd $HOME && pip install --user -r requirements.txt
python client/meter/api.py &
cd $HOME && pip3 install --user -r requirements.txt
python3 client/meter/api.py &
./client/meter/mongostarter.sh &

0 comments on commit 71aa325

Please sign in to comment.