Skip to content

Commit

Permalink
dev install script
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperq committed Dec 5, 2013
1 parent be1b188 commit e8c4171
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions 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'

0 comments on commit e8c4171

Please sign in to comment.