forked from eosauthority/genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
#Install parity | ||
bash <(curl https://get.parity.io -Lk) -r stable | ||
|
||
#Install Node | ||
sudo apt-get update | ||
curl -sL https://deb.nodesource.com/setup_8.x | bash - | ||
apt-get install -y nodejs | ||
nodejs -v | ||
|
||
#Install MySQl | ||
sudo apt-get install mysql-server | ||
mysql_secure_installation | ||
systemctl status mysql.service | ||
|
||
#Get Genesis Script | ||
cd /home/ | ||
git clone https://github.com/EOSIO/genesis.git | ||
cd genesis | ||
npm install | ||
cp config.default.js config.js | ||
nano config.js |