From 10e449039187cd3a8a99ef5298152621c4ec25e1 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Mon, 14 Feb 2022 21:50:00 +0000 Subject: [PATCH] Add 'init.sh' --- init.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 init.sh diff --git a/init.sh b/init.sh new file mode 100644 index 0000000..56fd515 --- /dev/null +++ b/init.sh @@ -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 \ No newline at end of file