Files
discordeno/examples
Zero-Tools 4ca4c808a5 add .yarnrc.yml to advanced example solution (#3887)
* add .yarnrc.yml to advanced example solution

add .yanrc.yml to advanced example so that it builds correctly

* Create .yarnrc.yml

This file is needed or else when yarn runs in `docker build` will attempt to use PnP

* Create .yarnrc.yml

This file is needed or else when yarn runs in `docker build` will attempt to use PnP

* Create .yarnrc.yml

This file is needed or else when yarn runs in `docker build` will attempt to use PnP

* Update .yarnrc.yml's message to be more accurate

Remove docker reference as it is irrelevant

* Update .yarnrc.yml to be more accurate

Removed reference to docker as it was irrelevant

* Update .yarnrc.yml to be more accurate

Remove reference to docker as it is irrelevant

* Update .yarnrc.yml to be more accurate

Remove reference to docker as it is irrelevant
2024-08-28 23:52:26 +05:30
..

Discordeno Bot Templates

In this directory you will find some example bots written using Discordeno.

In each template directory you will find more information on how to setup and run the template.

Minimal & Beginner

A very minimal bot with only a /ping command to show how to set-up a discordeno bot for interactions

The beginner template is a bit more complete and has a caching system already setup using the dd-cache-proxy library

Advanced

A more complex bot compared to beginner. It also has a /ping command, but also a /warn command showing how to deal with permissions and sending DMs

This template has a caching system already setup using the dd-cache-proxy library

BigBot

Log Image

The BigBot template is intended for more complex systems that need scaling.

The template consists of 3 folders with some common files. The template is configured with a REST proxy, the Gateway in a separate process and the Bot code in another.

While the template does not include any caching by default, you can either install dd-cache-proxy and setup it or roll your own solution