Skip to content

Commit

Permalink
Same as last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DMcP89 committed Jul 4, 2024
1 parent 05140de commit 495484d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ _An interactive Yahoo Fantasy sports bot for Discord._
/matchups - Returns the current weeks matchups
/waiver - Returns the waiver wire tranasactions from the previous 24 hours
/configure - Configure the bot for your guild
/reports - Set what channel transaction reports should be sent to.

You can find example output of these commands [here](https://github.com/DMcP89/harambot/wiki#command-examples)

Expand Down Expand Up @@ -57,6 +58,7 @@ _Visit our [wiki](https://github.com/DMcP89/harambot/wiki) for a step by step gu
export YAHOO_KEY='[YOUR YAHOO API CLIENT ID]'
export YAHOO_SECRET='[YOUR YAHOO API CLIENT SECRET]'
export DATABASE_URL='[YOUR DATABASE URL]'
export HARAMBOT_KEY='[YOUR ENCRYPTION KEY]' # A URL-safe base64-encoded 32-byte key
```

3. Run the bot
Expand All @@ -76,6 +78,7 @@ _Visit our [wiki](https://github.com/DMcP89/harambot/wiki) for a step by step gu
export YAHOO_KEY='[YOUR YAHOO API CLIENT ID]'
export YAHOO_SECRET='[YOUR YAHOO API CLIENT SECRET]'
export DATABASE_URL='[YOUR DATABASE URL]'
export HARAMBOT_KEY='[YOUR ENCRYPTION KEY]' # A URL-safe base64-encoded 32-byte key
```

3. Run the bot
Expand All @@ -85,6 +88,7 @@ _Visit our [wiki](https://github.com/DMcP89/harambot/wiki) for a step by step gu
-e YAHOO_KEY=$YAHOO_KEY \
-e YAHOO_SECRET=$YAHOO_SECRET \
-e DATABASE_URL=$DATABASE_URL \
-e HARAMBOT_KEY=$HARAMBOT_KEY \
--rm dmcp89/harambot


Expand Down
4 changes: 1 addition & 3 deletions harambot/cogs/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ async def reports(
self,
interaction: discord.Interaction,
):
message = (
"Set what channel transaction & matchup reports should be sent to."
)
message = "Set what channel transaction reports should be sent to."
await interaction.response.send_message(
message, view=ReportConfigView(), ephemeral=True
)
Expand Down

0 comments on commit 495484d

Please sign in to comment.