Skip to content

Commit e6ce22e

Browse files
committed
Added procfile and requirements
1 parent a5ade26 commit e6ce22e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
worker: python bot.py

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _add_commands(self):
5656
def token(self):
5757
'''Returns your token wherever it is'''
5858
try:
59-
with open('data/config.json') as f:
59+
with open('config.json') as f:
6060
config = json.load(f)
6161
if config.get('TOKEN') == "your_token_here":
6262
if not os.environ.get('TOKEN'):

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
git+https://github.com/Rapptz/discord.py@rewrite

0 commit comments

Comments
 (0)