Wispbyte™
Complete step-by-step guide to deploy your Discord bot on Wispbyte's free 24/7 hosting platform. No credit card required, no hidden fees.
First, you'll need to create a free Wispbyte account. This process is quick and doesn't require a credit card.
Screenshot: Wispbyte registration page
Placeholder for registration screenshot
Once you're logged in, navigate to the dashboard and create a new server for your Discord bot.
Screenshot: Create Server page
Placeholder for server creation screenshot
Choose the Docker image that matches your Discord bot's programming language. Wispbyte supports multiple languages:
Screenshot: Docker image selection
Placeholder for Docker image selection screenshot
After your server is created, you'll need to upload your Discord bot files. You can do this using the file manager.
index.js, bot.py)package.json or requirements.txt (if applicable)Screenshot: File manager upload interface
Placeholder for file upload screenshot
package.json (Node.js) or requirements.txt (Python) file so Wispbyte can automatically install your bot's dependencies.
If your bot requires dependencies (like discord.js or discord.py), you need to install them. Wispbyte makes this easy:
discord.js dotenv)discord.py python-dotenv)Screenshot: Startup configuration page
Placeholder for startup configuration screenshot
# Example for Node.js bots
# In "Additional Node Packages" field:
discord.js dotenv
# Example for Python bots
# In "Additional Python Packages" field:
discord.py python-dotenv
Set up your Discord bot token and any other environment variables your bot needs.
DISCORD_TOKEN or TOKENScreenshot: Environment variables configuration
Placeholder for environment variables screenshot
Set the command that will start your bot when the server starts.
node index.js or node bot.jspython bot.py or python3 main.pyScreenshot: Startup command configuration
Placeholder for startup command screenshot
# Example startup commands:
# Node.js:
node index.js
# Python:
python bot.py
# With nodemon (for development):
npx nodemon index.js
Now it's time to start your Discord bot and verify it's running correctly.
Screenshot: Server console showing bot startup
Placeholder for console screenshot
Once your bot has started, verify it's working correctly.
Screenshot: Bot online in Discord
Placeholder for Discord bot online screenshot