diff --git a/dev_install.sh b/dev_install.sh new file mode 100644 index 0000000..311d3a1 --- /dev/null +++ b/dev_install.sh @@ -0,0 +1,42 @@ +#!/bin/bash +mkdir ethersheet +cd ethersheet +echo "cloning Ethersheet" +git clone https://github.com/ethersheet-collective/EtherSheet +echo "cloning es_client" +git clone https://github.com/ethersheet-collective/es_client.git +echo "cloning es_expression" +git clone https://github.com/ethersheet-collective/es_expression.git +echo "cloning transactor" +git clone https://github.com/ethersheet-collective/transactor.git +echo "cloning es_command" +git clone https://github.com/ethersheet-collective/es_command.git +echo "cloning ref-binder" +git clone https://github.com/ethersheet-collective/ref-binder.git +echo '*** INSTALLING es_expression *************************' +cd es_expression +npm install +sudo npm link +cd ../ +echo '*** INSTALLING transactor ****************************' +cd transactor +npm install +sudo npm link +cd ../ +echo '*** INSTALLING es_command ****************************' +cd es_command +npm install +sudo npm link +cd ../ +echo '*** INSTALLING es_client *****************************' +cd es_client +npm install +sudo npm link +cd ../ +echo '*** INSTALLING EtherSheet ****************************' +cd EtherSheet +npm install +npm link es_client +npm link es_command +npm link transactor +echo 'DONE'