Skip to content

DEVMOI/moibot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 6, 2020
468d9f5 · Mar 6, 2020

History

86 Commits
Oct 21, 2019
Oct 21, 2019
Mar 6, 2020
Oct 21, 2019
Oct 17, 2019
Oct 18, 2019
Oct 21, 2019
Feb 26, 2020
Oct 17, 2019
Oct 17, 2019
Oct 17, 2019
Oct 17, 2019
Oct 21, 2019
Mar 6, 2020
Feb 26, 2020
Mar 6, 2020
Feb 26, 2020
Mar 6, 2020
Feb 26, 2020
Mar 6, 2020

Repository files navigation

MoiBot

A Community Discord Bot Built on the ERIS Library and NodeJS

Introduction

MoiBot is a Community Discord for NodeGG and D-z Discord built to service the needs of these two communites and potentially more!

How To Get Started

npm i

# or

yarn
  • Starting the Container for Development
npm run dev:docker

# or

yarn dev:docker
  • Starting Container for Production
npm run start:docker

# or

yarn start:docker
  • Start Dev Server without Docker
npm run dev

# or

yarn dev
  • Start Prod Server without Docker
npm start

# or

yarn start

Create a Command

  • All Bot Commands are automatically added to the bot if placed in the formats below
export default function exampleCommand(command){
  // Place Code Here

  /* Example Code
    command.registerCommand("ping", "Pong!", { // Make a ping command
      // Responds with "Pong!" when someone says "!ping"
      description: "Pong!",
      fullDescription: "This command could be used to check if the bot is up. Or entertainment when you're bored."
    });

  */
}