Skip to content

ahson01/omecord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Omegle-Style Discord Bot

Docker Usage

1. Prepare your .env file

Create a .env file in the project root with the following variables:

DISCORD_TOKEN=your_token_here
GUILD_ID=your_guild_id
CHANNEL_ID=your_channel_id
CLEANUP_INTERVAL=300
PAIR_INTERVAL=1.0
METRICS_PORT=8000
TIMEOUT_SECONDS=120

2. Build the Docker image

docker build -t omegle-discord-bot .

3. Run the bot container

docker run -d \
  --name omegle-discord-bot \
  --env-file .env \
  -p 8000:8000 \
  omegle-discord-bot
  • The bot will start and expose Prometheus metrics on port 8000.
  • Make sure your bot token and IDs are correct in .env.

Development

You can also run the bot locally with:

pip install -r requirements.txt
python bot.py

About

An Omegle-like Discord Bot

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published