Link your WhatsApp
Your pair code will appear here
Scan this QR code with WhatsApp
Configure your deployment
Auto Read Messages
Bot marks messages as read automatically
Auto View Statuses
Bot automatically views WhatsApp statuses
Fill in your details above, then click
Generate index.js
Generate index.js
node index.js
Save the file and run this — that's it.
Deployment instructions
-
1Create a Render accountGo to render.com and sign up — linking with GitHub makes the next step easier.
-
2New Background WorkerClick New + → Background Worker. Connect your GitHub repo or paste this URL directly:
https://github.com/crysnovax/CODY -
3Set build & start commandsIn the service settings, configure these two commands:
npm installnode index.js -
4Add Environment VariablesUnder the Environment tab, add these key-value pairs:
SESSION_IDOWNER_NUMBEROWNER_NAMEBOT_NAMEPREFIXMODE💡 Or skip env vars entirely — use the Generate Script tab to embed values directly. -
5Deploy ✅Click Create Background Worker. Render will build and launch your bot automatically.
Free tier Render services spin down after inactivity. For a 24/7 bot, upgrade to a paid plan ($7/mo) or deploy on a VPS instead.
-
1Install Node.js 20, Git & PM2SSH into your server and run this single block:
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - && sudo apt-get install -y nodejs git && sudo npm install -g pm2 -
2Create folder & upload index.jsCreate a folder for your bot:
mkdir cody-ai && cd cody-aiThen upload your generated index.js using any of these methods:• SFTP — use FileZilla or Termius file transfer• cat command — paste content directly into terminal:cat > index.js << 'EOF' [paste your index.js content here] EOF -
3Create package.jsonRun this to create a minimal package.json:
echo '{"name":"cody-ai","version":"1.0.0","type":"commonjs","scripts":{"start":"node index.js"}}' > package.json -
4Launch with PM2Start the bot and keep it alive 24/7:
pm2 start index.js --name cody-aipm2 save && pm2 startup -
5Useful PM2 commands
pm2 logs cody-aipm2 restart cody-aipm2 stop cody-aipm2 delete cody-ai
Recommended providers: Oracle Cloud (always free), DigitalOcean, Hetzner, or Contabo. Ubuntu 22.04 LTS works best. Minimum 512MB RAM required.
-
1Create a Node.js serverIn your panel (Pterodactyl, Pelican, etc.), create a new server using a Node.js egg / template. Set RAM to at least 512 MB.
-
2Upload index.jsUse the panel's file manager to upload your generated index.js to the server root.
-
3Set the startup commandIn Startup settings, change the start command to:
node index.js -
4Power on ✅Click the power button and watch the console. Your bot will install dependencies and go online automatically.
No Node.js egg available? Ask your host to install one from github.com/parkervcp/eggs.
-
1Update TermuxOpen Termux and update all packages:
pkg update -y && pkg upgrade -y -
2Install Node.js & Git
pkg install nodejs-lts git -y -
3Clone CODY AI
git clone https://github.com/crysnovax/CODY.gitcd CODY -
4Install Dependencies
npm install -
524/7 Session (Recommended)
pkg install tmux -ytmux new -s cody -
6Start CODY AI
node index.js
Termux does not support sudo commands. Use pkg instead of apt-get. Running inside tmux helps keep the bot alive when the Termux window is closed.