17 lines
406 B
Bash
Executable File
17 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Memebot Startup Script
|
|
# Double-click this file to start your bot
|
|
|
|
cd /Users/hyperterminal/myspace/memebot
|
|
source .venv/bin/activate
|
|
|
|
# Set your credentials here (replace with your actual values)
|
|
export TELEGRAM_BOT_TOKEN="8478225179:AAH_38KkQHPEnIcacUzCs8M-VDkBGfxR3UA"
|
|
export OWNER_ID="324460662"
|
|
export CHANNEL_ID="@meme_galore"
|
|
|
|
# Start the bot
|
|
echo "Starting memebot..."
|
|
python3 bot.py
|