Replies: 1 comment
-
For further support, join our discord: https://dvr.cx/epix_discord_invite |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This guide will show you how you can connect your Trello board to Adonis. You can then use Trello to manage admins, commands, bans, and more.
Please note that Trello is not designed to be used as a database, and it is NOT recommended to use the Trello integration in games with lots of players or servers. If your game has a high player/server count, please look into implementing your own external database with something like Google's Firebase or MongoDB. If you end up sending too many requests to Trello from your Roblox game, Trello will rate limit you and there is a chance of your Trello account being moderated.
We are not responsible for your misuse of any APIs connected with Adonis.
Create a Trello Board
Configure the Adonis - Trello Integration
settings.HttpWait = 60
- going lower than 60 will increase the chance of you hitting rate limitssettings.Trello_Enabled = true
settings.Trello_Primary = "BOARD_ID_HERE"
- enter your board ID (https://trello.com/b/COPY_ID_FROM_HERE/adonis-test-board)settings.Trello_AppKey = ""
https://trello.com/1/connect?name=Trello_API_Module&response_type=token&expires=never&scope=read,write&key=YOUR_APP_KEY_HERE
settings.Trello_Token = ""
Verify Connection in-game
:admins
command, you should see the Trello admins (assuming you chose to add this list to your board):viewlist [listname]
to see what is in your Trello list from in-gameBeta Was this translation helpful? Give feedback.
All reactions