-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.sh
49 lines (39 loc) · 2.29 KB
/
dev.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
#!/bin/sh
echo "Setting up development environment..."
# create a sites directory
mkdir $HOME/Code
export CODE=$HOME/Code
# set default mysql root password and auth type
mysql -u root -e "ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY 'root'; FLUSH PRIVILEGES;"
# install global composer packages
composer global require laravel/vapor-cli
composer global require laravel/forge-cli
# install global npm packages
npm install -g ts-node
npm install -g npm-check-updates
# cloning repos
git clone [email protected]:michavie/sc-playground.git $CODE/sc-playground
git clone [email protected]:PeerMeHQ/api $CODE/peerme--api
git clone [email protected]:PeerMeHQ/core-ts $CODE/peerme--core-ts
git clone [email protected]:PeerMeHQ/pwa $CODE/peerme--pwa
git clone [email protected]:PeerMeHQ/dao-sc $CODE/peerme--dao-sc
git clone [email protected]:PeerMeHQ/dao-plug-template-sc $CODE/peerme--dao-plug-template-sc
git clone [email protected]:PeerMeHQ/identity-sc $CODE/peerme--identity-sc
git clone [email protected]:PeerMeHQ/snippets $CODE/peerme--snippets
git clone [email protected]:PeerMeHQ/mx-sdk-laravel $CODE/peerme--mx-sdk-laravel
git clone [email protected]:PeerMeHQ/extensions $CODE/peerme--extensions
git clone [email protected]:PeerMeHQ/know $CODE/peerme--know
git clone [email protected]:PeerMeHQ/mx-strategy-contribution-token-sc.git $CODE/peerme--strategy-contribution-token-sc
git clone [email protected]:PeerMeHQ/mx-strategy-contribution-tokenless-sc.git $CODE/peerme--strategy-contribution-tokenless-sc
git clone [email protected]:PeerMeHQ/earn-sc.git $CODE/peerme--earn-sc
git clone [email protected]:PeerMeHQ/bounties-sc.git $CODE/peerme--bounties-sc
git clone [email protected]:PeerMeHQ/assets.git $CODE/peerme--assets
git clone [email protected]:SpawnableHQ/api.git $CODE/spawnable--api
git clone [email protected]:SpawnableHQ/pwa.git $CODE/spawnable--pwa
git clone [email protected]:SpawnableHQ/bridge-mx.git $CODE/spawnable--bridge-mx
git clone [email protected]:SpawnableHQ/mx-spawner-sc.git $CODE/spawnable--mx-spawner-sc
git clone [email protected]:VirtualLeap/organization-sc.git $CODE/vleap--organization-sc
git clone [email protected]:VirtualLeap/legal.git $CODE/vleap--legal
git clone [email protected]:VirtualLeap/api.git $CODE/vleap--api
git clone [email protected]:VirtualLeap/pwa.git $CODE/vleap--pwa
git clone [email protected]:VirtualLeap/hub.git $CODE/vleap--hub