VPS Deployment

Deploy on your own VPS (Ubuntu/Debian)

sudo apt update && sudo apt upgrade -y
sudo apt install git ffmpeg curl -y
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt install nodejs -y
sudo npm install -g yarn
yarn global add pm2
git clone https://github.com/oluwafemimartins1212-sketch/vord-bot
cd vord-bot
npm install
# Create config.env file with your variables
pm2 start index.js --name vord-bot
pm2 save
pm2 startup

After installation, create a config.env file with your session ID, owner number, etc., then run pm2 start index.js --name vord-bot.