Add 'init.sh'

This commit is contained in:
Sarimoko 2022-02-14 21:50:00 +00:00
parent 3d7245c488
commit 10e4490391
1 changed files with 16 additions and 0 deletions

16
init.sh Normal file
View File

@ -0,0 +1,16 @@
#!/bin/bash
clear
echo 'Open L1 | Open-Sourced Lineage 1!'
echo ''
echo 'INITIAL SETUP'
echo '...please wait...'
echo 'Update & Upgrading Apps/OS/Repo-List...'
sudo apt update -qq && sudo apt upgrade -y
echo 'Installing MySQL & Node.JS...'
sudo apt install mysql-server nodejs npm -y
echo 'Installing NPM Requirements'
cd Open_L1/node
npm install colors
npm install dotenv
exit