🚀

Quick Start Guide

Get your first bot deployed in under 5 minutes.

  • 1. Create an account
  • 2. Choose a plan
  • 3. Access your VPS via SSH
  • 4. Upload and run your bot
🔐

SSH Access

Connect to your VPS securely.

ssh root@your-bot.clawdbot.army

SSH credentials are sent via email after signup.

📦

Pre-installed Software

Your VPS comes ready with:

  • • Node.js 20 LTS
  • • Python 3.11
  • • Git, PM2, Screen
  • • FFmpeg (for audio)
  • • MongoDB, Redis (optional)

Common Tasks

Deploy a Discord.js Bot

# Clone your bot
git clone https://github.com/you/bot.git
cd bot && npm install
# Run with PM2
pm2 start index.js --name mybot

Deploy a Python Bot

# Upload your bot
scp -r ./bot root@vps:/home/bot
pip install -r requirements.txt
# Run with screen
screen -S bot python3 main.py

Set Environment Variables

# Create .env file
nano .env
# Add your tokens
DISCORD_TOKEN=your_token
DATABASE_URL=mongodb://...

Auto-restart with PM2

# Save PM2 process list
pm2 save
# Enable startup script
pm2 startup
# View logs
pm2 logs mybot

Monitor Resources

# Check memory usage
free -h
# Check disk space
df -h
# Live process monitor
htop

Backup Your Data

# Download backup locally
scp -r root@vps:/home/bot ./backup
# MongoDB backup
mongodump --out=/backup/db

Need More Help?

Our support team is available 24/7 to assist you.