Created
April 30, 2014 02:40
-
-
Save dbarbar/8c0163edf797b6f6f4cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -rf box | |
git clone [email protected]:dbarbar/sb4dev.git box | |
cd box | |
vagrant up --provider=vmware_fusion | |
cd .. | |
rm -rf files | |
mkdir files | |
chmod -R 777 files | |
rm -rf keys | |
mkdir keys | |
echo "weakeweaksalt" > keys/salt.txt | |
echo "weakweakencryptkey" > keys/encrypt_key.key | |
echo "sb4.local" > keys/sustainer.key | |
rm -rf private | |
mkdir private | |
rm -rf src | |
rm -rf build | |
git clone [email protected]:JacksonRiver/Springboard-Build.git build | |
cd build | |
git checkout 7.x-4.x | |
cd .. | |
drush make build/springboard-mtsb.make src | |
cd src/sites/default | |
ln -s ../../../box/settings.php settings.php | |
cd ../../.. | |
cd src/sites/all/modules | |
rm -rf springboard | |
git clone [email protected]:JacksonRiver/springboard_modules.git springboard | |
cd springboard | |
git checkout 7.x-4.x | |
cd ../../themes | |
rm -rf springboard_themes | |
git clone [email protected]:JacksonRiver/springboard-themes.git springboard_themes | |
cd springboard_themes | |
git checkout 7.x-4.x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment