Merge pull request #302 from croumegous/minor-doc-discord

minor: add documentation on discord env variable to set up and fix shell script to run discord bot
This commit is contained in:
Yannic Kilcher
2023-01-03 08:45:24 +01:00
committed by GitHub
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -48,7 +48,7 @@ Remember to save your changes.
below to invite your bot.
```
https://discord.com/oauth2/authorize?client_id=YOUR_ID_HERE&permissions=8&scope=bot%20applications.commands
https://discord.com/oauth2/authorize?client_id=YOUR_CLIENT_ID_HERE&permissions=8&scope=bot%20applications.commands
```
### Environment Setup
@@ -66,6 +66,9 @@ pip install -e .
cp .env.example .env
# edit .env and add your bot token and other values
# BOT_TOKEN is given by the discord developer portal when you create a bot
# DECLARE_GLOBAL_COMMANDS is the id of the server where you added the bot (right click on the server icon and copy id)
# OWNER_ID can be leave as an empty list
python -V # 3.10
@@ -4,6 +4,6 @@ parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
# switch to bot directory
pushd "$parent_path/../../discord-bot"
python3 __main__.py
python3 -m bot
popd