Folder Structure
- Top_level: (where node_modules folder is located at)
- Second_level
- Third_level
Example with folder names:
DO NOT PUT files INSIDE your TOP_LEVEL commands folder. FOLDERS ONLY

discord-bot/
βββ commands/
β βββ miscellaneous/ //this can be any name you want
β β βββ ping.js
βββ events/
β βββ ready.js
βββ modules/
βββ node_modules/
βββ .env
βββ config.js
βββ index.js
βββ package-lock.json
βββ package.json
The commands folder is based on the built-in structure where we rely on the subfolders to be the category names of the commands inside the subfolders.
Refer to config.js for details on how to create and customize the configuration file to view the pre-made configuration and if you prefer to customize then o look at the pre-made setup to ensure the discord-features-handler will be compatible with the configuration file.
Last updated