make container verbose

This commit is contained in:
deflax 2022-03-23 19:56:13 -04:00
parent 1277e1c17b
commit afb34d4477
2 changed files with 6 additions and 2 deletions

View file

@ -7,5 +7,5 @@ services:
dockerfile: Dockerfile
env_file:
- .env
command: python3 main.py
command: python3 -u main.py
restart: always

View file

@ -5,6 +5,8 @@ from discord.ext.commands import Bot
bot_version = os.environ['version']
bot_token = os.environ['token']
print('radiobot ' + bot_version + ' starting')
client = Bot(command_prefix="!")
isPlaying = False
class MyClient(discord.Client):
@ -13,6 +15,8 @@ class MyClient(discord.Client):
print('Logged on as', self.user)
async def on_message(self, message):
print('msg')
# don't respond to ourselves
if message.author == self.user:
return