Hi everyone this is a simple template for seyfert, you can fork it and use it to make your own discord bot in seyfert easily :D
Important
Well Before you clone this template pls read the seyfert docs. If you don't read it you can make some bugs in your code because you doesnt understand what do you do XD
Well the template is simple to make any bot, not for specific type. Ok I describe the template:
- src: Is the folder to contains the project
- commands: commands for the bot, you can create others or delete (Is just a commands nothing special here).
- events: events with your bot (nothing special here, just the events for the bot).
- utils: this folder contains files that used usually in the bot. For example functions to use usuallly in commands or events and constants that use while you are coding :D
- middlewares: Seyfert can use middlewares in your commands and yep I include a simple example for that
- Clone this repository
git clone https://github.com/enderdev-v/Pikachu-seyfert.git
cd Pikachu-seyfert- Install the dependencies
pnpm install- Configure the project
cp .env.example .envnano .env# Set your bot token
token="Your Token Bot"Put the intents that you use also you follow the seyfert docs to extend that
const seyfert = config.bot({
token: process.env.BOT_TOKEN,
intents: ["Guilds", 'MessageContent', 'GuildMessages', 'GuildMembers', 'GuildWebhooks'],
// other options...
});- Run the bot
pnpm start![NOTE] You can suggest features or improvements by opening an issue on the GitHub repository that i cad add in the template
And get happy coding!