Files
revanced-bots/bots/discord/docs/3_running.md
PalmDevs 7e5f6481c5 feat(bots/discord)!: read commit description
FEATURES:
- Updated documentation
- Improved configuration format
- Allow filter overriding for each response config (closes #29)
- Improved commands directory structure
- Improved slash command reload script
- New commands
- New command exception handling
2024-06-24 18:23:36 +07:00

784 B

🏃🏻‍♂️ Running the bot

There are two methods to run the bot. Choose one that suits best for the situation.

There will be no compilation step, and Bun will automatically watch changes and restart the bot for you.

You can quickly start the bot by running:

bun dev

📦 Building

There's unfortunately no way to build/bundle the bot yet due to how dynamic imports currently work, though we have a few ideas that may work. As a workaround, you can zip up the whole project, unzip, and run it in development mode using Bun.

⏭️ What's next

The next page will tell you how to add commands and listen to events to the bot.

Continue: Adding commands and listening to events