config.example.json 884 B

123456789101112131415161718192021222324252627
  1. {
  2. // eg. nedb://[directory-path]
  3. // nedb://memory
  4. // mongodb://[username:password@]host[:port][/db-name]
  5. "database_uri": "nedb://db",
  6. // the id of the discord server you'll be playing on! (you can get
  7. // this using 'Developer Mode' and using 'Copy ID' in the server's
  8. // right-click menu.)
  9. "discord_server_id": "PUT_YOUR_SERVER_ID_HERE",
  10. // ids of discord servers used solely to store emojis. you'll need at least
  11. // one of these. note that all existing emojis on the server will be deleted.
  12. "discord_emote_store_server_ids": [
  13. "PUT_YOUR_EMOJI_SERVER_ID_HERE"
  14. ],
  15. // fill this with as many bot tokens as you like.
  16. // see https://discordapp.com/developers/applications/
  17. //
  18. // you'll need to add these to the server - the program will prompt
  19. // you to do this when it runs :)
  20. "discord_bot_tokens": [
  21. "PUT_YOUR_BOT_TOKEN_HERE"
  22. ]
  23. }