/fxop-md

Simple WhatsApp Bot

Primary LanguageJavaScript

WhatsApp Bot

Generate Session ID Generate Session ID

A Simple WhatsApp bot built with the Baileys library, designed for easy deployment across various platforms.


Deployment Options

Deploy your bot on any of these platforms:

  • Heroku
    Purpose: Ideal for hosting Node.js applications with easy scaling.
    API Key: Create a Heroku account and follow the prompts to generate an API key in your dashboard.
    Env Setup: Add your API key & APP NAME to the .env file as HEROKU_API_KEY="your_api_key" and HEROKU_APP_NAME="your_app_name".

  • Koyeb
    Purpose: High-performance hosting for Dockerized Node.js apps.
    API Key: Sign up for a Koyeb account to access your API key in the dashboard.
    Env Setup: Include it in your .env file as KOYEB_API_KEY="your_api_key".

  • Render
    Purpose: Great for auto-scaling Node.js applications with minimal configuration.
    API Key: Create a Render account to generate an API key via your account settings.
    Env Setup: Add to .env as RENDER_API_KEY="your_api_key".

  • Railway
    Purpose: Quick deployment for Node.js apps with a user-friendly interface.
    API Key: Register for a Railway account to obtain an API key in your dashboard.
    Env Setup: Set it in your .env as RAILWAY_API_KEY="your_api_key".

  • Termux
    Purpose: Run Node.js apps directly on Android devices.
    API Key: No API key needed; simply clone the repository and set up.
    Env Setup: Create a .env file for your bot's session ID and info.

  • Panel
    Purpose: Web-based interface for managing your Node.js bot.
    API Key: No API key required; install directly from releases.
    Env Setup: Configure in your .env as necessary for the bot.

  • Codespaces
    Purpose: Cloud-based development environment for Node.js applications.
    API Key: Not needed; set up your project directly in Codespaces.
    Env Setup: Create a .env file for your bot's configuration.

  • Replit
    Purpose: Free, browser-based option perfect for beginners with Node.js.
    API Key: No API key required; sign up to start a new project.
    Env Setup: Use the built-in environment variable management for your bot.


Local Setup

To run the bot locally:

  1. Generate a Session ID: Create your SESSION_ID here.

  2. Configure Environment Variables: Create a .env file with:

    SESSION_ID="your_generated_session_id"
    BOT_INFO="YourName,YourBotName"
  3. Launch the Bot: Use Node.js, Docker, or your preferred method.


Support

Need help? Join our WhatsApp support channel.


Termux Installation

Quick setup for Termux:

pkg update && pkg upgrade -y
pkg install nodejs ffmpeg git python openssh nano wget -y
git clone https://github.com/FXastro/fxop-md
cd fxop-md
npm install
npm start

Extended Setup (Optional)

Save the following as termux-setup.sh:

#!/bin/bash
pkg update && pkg upgrade -y
pkg install nodejs ffmpeg git python openssh nano wget -y
git clone https://github.com/FXastro/fxop-md
cd fxop-md
npm install
echo 'SESSION_ID="your_session_id_here"' > .env
echo 'BOT_INFO="your_bot_info_here"' >> .env
npm start

Make it executable and run:

chmod +x termux-setup.sh
./termux-setup.sh

Installation Issues?

If you encounter errors:

  1. Install Android NDK:

    pkg install ndk-sysroot
  2. Ensure dependencies are installed:

    pkg install make gcc python
  3. Rebuild SQLite3:

    npm rebuild sqlite3

Important Notes

  • Always replace placeholder values with your actual data.
  • The setup script automates installation and configuration.
  • Never share sensitive information like your SESSION_ID.
  • Use the bot at your own risk; it's provided as-is.