You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seen your TODO, if you need help implementing Discord integration, here's a snippet that has everything you need. https://github.com/aljazfrancic/fnm-code-bot/blob/main/bot.py await chan.send(msg) sends message to the specified Discord channel.
The real pain lies in configuring the Discord app and DISCORD_TOKEN, but it's pretty self explanatory. https://discord.com/developers/applications
It's possible to send directly to a certain guild (Discord server), given their guild ID, which can be found though Discord's inbuilt developer mode.
In that case you obviously also need to provide the channel name.
Both of which could be pulled from the GUI in your case, or perhaps a file (less user friendly, but useful for storing defaults etc.).
Ping/assign me if you want help implementing Discord integration.
The text was updated successfully, but these errors were encountered:
Seen your TODO, if you need help implementing Discord integration, here's a snippet that has everything you need.
https://github.com/aljazfrancic/fnm-code-bot/blob/main/bot.py
await chan.send(msg)
sends message to the specified Discord channel.The real pain lies in configuring the Discord app and
DISCORD_TOKEN
, but it's pretty self explanatory.https://discord.com/developers/applications
It's possible to send directly to a certain guild (Discord server), given their guild ID, which can be found though Discord's inbuilt developer mode.
In that case you obviously also need to provide the channel name.
Both of which could be pulled from the GUI in your case, or perhaps a file (less user friendly, but useful for storing defaults etc.).
Ping/assign me if you want help implementing Discord integration.
The text was updated successfully, but these errors were encountered: