config.example.json 646 B

123456789101112131415161718192021
  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. // fill this with as many bot tokens as you like.
  11. // see https://discordapp.com/developers/applications/
  12. //
  13. // you'll need to add these to the server - the program will prompt
  14. // you to do this when it runs :)
  15. "discord_bot_tokens": [
  16. "PUT_YOUR_BOT_TOKEN_HERE"
  17. ]
  18. }