forked from donnemartin/dev-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodebases.sh
executable file
·49 lines (40 loc) · 1.25 KB
/
codebases.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env bash
# Wire up profile (revised, saner way to do it.)
cd ~
if [ -s .bash_profile.bak ]; then
rm .bash_profile
mv .bash_profile.bak .bash_profile
fi
if [ -s .gitconfig.bak ]; then
rm .gitconfig
mv .gitconfig.bak .gitconfig
fi
rm .bash_profile_buddyup
ln -s bootstrap/.bash_profile .bash_profile_buddyup
if ! cat .bash_profile | grep "bash_profile_buddyup"; then
printf "\n# Added by BuddyUp Dev Setup\nsource .bash_profile_buddyup" >> .bash_profile
fi
if ! cat .gitconfig | grep "bootstrap/.gitconfig"; then
printf "\n# Added by BuddyUp Dev Setup\n[include]\n\tpath = bootstrap/.gitconfig\n" >> .gitconfig
fi
# Set up dewey and polytester
pip install --upgrade pip
pip install polytester --upgrade
pip install git+https://[email protected]/buddyup/dewey.git#egg=dewey --upgrade
# Clone down the codebases
mkdir -p ~/buddyup
cd ~/buddyup
git clone [email protected]:buddyup/core.git
cd ~/buddyup
git clone [email protected]:buddyup/firebase-server.git
cd ~/buddyup
git clone [email protected]:buddyup/api.git
cd ~/buddyup
git clone [email protected]:buddyup/oliver.git
cd oliver
npm install -g ios-deploy webpack --unsafe-perm=true
npm install
ionic platform remove ios
ionic platform add ios
ionic platform remove android
ionic platform add android