create-guilded-bot/packages/bot/typescript
2022-11-20 12:10:54 +05:30
..
src feat: initialize cli & dependency installation 2022-11-19 12:31:57 +05:30
.env.example fix: remove leaked token & rename to .env.example 2022-11-19 22:46:38 +05:30
environment.d.ts feat: initialize cli & dependency installation 2022-11-19 12:31:57 +05:30
package.json feat: initialize cli & dependency installation 2022-11-19 12:31:57 +05:30
README.md feat: stable template setup & TypeScript template README 2022-11-20 12:10:54 +05:30
tsconfig.json feat: initialize cli & dependency installation 2022-11-19 12:31:57 +05:30

This is a guilded bot created using create-guilded-bot.

Getting Started

In order to run the development environment, configure your .env file with the required variables and then execute the following commands:

npm run dev
# or with yarn
yarn dev

Your bot should be online.

You can start editing the commands by adding/modifying files in the commands directory. An example help command is provided in commands/help.ts.

Events can also be customized by adding files to the events directory corresponding to the name of the event. See events/ready.ts for an example event.

Learn More

Since create-guilded-bot uses guilded.js, you can learn more from their official docs.

🚀 Let's create some bots, shall we?