Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 2.26 KB

ABOUT.md

File metadata and controls

15 lines (14 loc) · 2.26 KB

How it Works

  • bot.js is the starting point of the application (commonly index.js or main.js in others)
  • This bot uses a command handler based on this Advanced Command Handler (also a great channel if you want to learn Discord.js)
  • All commands are stored in the commands folder in their respective subfolder
  • Commands commonly interact with systems in the root folder such as add-custom-command.js (in the commands folder) interacting with custom-commands.js
  • Most important constants are stored in config.json
  • Database schemas are all in the schema folder

Basic Architecture