bjuspi / EddieBot

Discord bot for Eddie Jaoude's Discord server

Home Page:https://discord.gg/jZQs6Wu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EddieBot

Develop workflow

Discord bot for Eddie Jaoude's Discord server

Contributing

Feel free to create an issue or make a Pull Request 😃. Please see our Contributing file first, before making new commits or opening a PR. We appreciate it ❤️!


→ Features of EddieBot

  • Set/Get user bio with description and social links

  • Timezone, listens for messages that contain 1:30pm UTC and replies with common timezones translation

  • Code of Conduct

  • Daily standup message consistently formatted

  • Help showing a list of available commands

  • Members role rewards

  • Gets tips of resources on a given subject

  • Server status, to display some statistics of the server (e.g total number of users and messages)

  • Firebase (Firestore) integration, allowing people to easily add commands and persist data

  • GitHub Actions deploys mainline branch to Azure

→ Requirements

  • [optional] Docker and Docker-Compose
  • discord token. To get one follow these instructions
  • general channel ID of your discord server, read the instructions on one of these links to get yours:
  • ID of your discord server, to get your server ID follow these steps:
    • First make sure you have Developer Mode enabled on your Discord by visiting your Discord settings and going to Appearance
    • Right click on the server icon on the left hand sidebar then click on "Copy ID"
  • firebase key for the project, check these docs to get your key
  • [optional] Github token that you can get from here
  • [optional] GCP account to deploy to (using GitHub Actions)
  • Configured words show with alternative suggestions after the user sends a message using the Alex project

→ How to run EddieBot locally:

1. Set Environment Variables

  1. Copy .env.example to .env.
  2. Generate the "Service Account" from Firebase Settings > Cloud Messaging.
    1. Download Service Account JSON file from this same screen.
  3. Open .env and fill empty strings with matching credentials from the JSON file.

2. To start the application

  • [optional] To run with Docker ensure you have the latest version and Docker Compose installed and run

    • docker-compose up
  • To run locally

    1. To setup: npm run setup
    2. To start: npm run start:local

→ Useful Commands

  • View Logs

    docker-compose logs --tail=all -f eddiebot-nodejs

  • Use NodeJS instance CLI

    docker-compose exec eddiebot-nodejs /bin/bash

Standardized Code Formating

  • Before Commit
    1. lint for errors: npm run lint
    2. fix any errors: npm run lint:fix

Using Commitizen for commits

  1. git add <your files>
  2. npm run commit

→ Logging

Logging will happen to the console as well as to the Discord bot channel.

  1. Include the logger object...
import { log } from './logger';
  1. Usage
log.info('Message', 'Details');

or

log.warn('Message', 'Details');

or

log.error('Message', 'Details');

or

log.fatal('Message', 'Details');

Documentation

Resources


Socials

Join our discord community here

About

Discord bot for Eddie Jaoude's Discord server

https://discord.gg/jZQs6Wu

License:MIT License


Languages

Language:TypeScript 98.0%Language:Shell 1.0%Language:Dockerfile 1.0%