Merge branch '2-load-token-from-env' into 'develop'

Implement loading token from ENV

Closes #2

See merge request ekzyis/musicube!1
This commit is contained in:
Ramdip Gill 2021-09-24 19:08:19 +00:00
commit 2a31fa6059
4 changed files with 15 additions and 1 deletions

1
.env.template Normal file
View File

@ -0,0 +1 @@
BOT_TOKEN=

1
.gitignore vendored
View File

@ -1 +1,2 @@
venv
.env

View File

@ -11,6 +11,7 @@ multidict==5.1.0
pycodestyle==2.7.0
pycparser==2.20
PyNaCl==1.4.0
python-dotenv==0.19.0
six==1.16.0
toml==0.10.2
typing-extensions==3.10.0.2

View File

@ -1,10 +1,15 @@
import asyncio
import os
import discord
import youtube_dl
from discord.ext import commands
from dotenv import load_dotenv
load_dotenv()
# Suppress noise about console usage from errors
youtube_dl.utils.bug_reports_message = lambda: ''
@ -134,4 +139,10 @@ async def on_ready():
print('------')
bot.add_cog(Music(bot))
bot.run('token')
token = os.environ.get("BOT_TOKEN", None)
if not token:
print("No token fouund in BOT_TOKEN")
exit(1)
bot.run(os.environ["BOT_TOKEN"])