Если запускать бота на пк он работает, но на Heroku всячески отказывается.
В репозитории github вот такие файлы:
- Procfile
- README.md
- disbot.py
- requirements.txt
- runtime.txt
Procfileworker: python disbot.py
disbot.pyimport discord
from discord.ext import commands
from discord.ext.commands import Bot
Bot = commands.Bot(command_prefix='!')
@Bot.event
async def on_ready():
print('Бот онлайн!')
@Bot.command(pass_context = True)
async def hello(ctx):
await Bot.say("Hello!!!")
Bot.run("") // токен убрал на всякий случай
requirements.txtdiscord.py
aiohttp
websockets
chardet
runtime.txtpython-3.6.8