Skip to content

Discord bot for Hackerabad's Discord server, a modification of EddieBot

License

Notifications You must be signed in to change notification settings

Hackerabad/HackeraBot

 
 

Repository files navigation

EddieBot

The official EddieBot for the official Discord server. Join us at Discord today!

Features

  • Checking all people's messages for inclusive language.

Config / Secrets environment variables

Copy .env.example to .env and add your private information

Note: never commit this file, it is ignored by Git

DISCORD_TOKEN="<your-token>"
EDDIEBOT_MONGO_CONNECTION_STRING="<your-mongo-connection-string>"

Installation

1. Start by making a fork of the repository. Click on the "Fork" symbol at the top right corner.

2. Clone your new fork of the repository:

$ git clone git@github.com:EddieHubCommunity/EddieBot.git

note: recommended

GitHub CLI

$ gh repo clone EddieHubCommunity/EddieBot

HTTPS

$ git clone https://github.com/EddieHubCommunity/EddieBot.git

3. Set upstream command:

git remote add upstream https://github.com/EddieHubCommunity/EddieBot.git

4. Navigate to the new project directory:

cd EddieBot

5. Create a new branch:

git checkout -b <branch-name>

6. Sync your fork or a local repository with the origin repository:

  • In your forked repository click on "Fetch upstream"
  • Click "Fetch and merge".

Alternatively, Git CLI way to Sync forked repository with origin repository:

git fetch upstream
git merge upstream/main

7. Make your changes to the source code.

8. Stage your changes and commit:

git add <filename>
git commit -m "<your-commit-message>"

9. Push your local commits to the remote repository:

git push origin <branch-name>

10. Create a Pull Request!

11. Congratulations! You've made your first contribution to EddieBot! 🙌🏼

Discord Docs

Running the app

$ npm ci

# development
$ npm run build
$ npm start

Support

EddieBot is an MIT-licensed open source project. It can grow thanks to the contributors and the community members. If you'd like to join them, feel free to make a pull request and we'll review it.

Stuck? Have any questions or comments? Join us on Discord and ask for help.

License

The EddieBot is licensed under the MIT license.

Thanks to all Contributors 💪

Thanks a lot for spending your time helping EddieBot grow. Thanks a lot! Keep rocking 🍻

Contributors

About

Discord bot for Hackerabad's Discord server, a modification of EddieBot

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 94.6%
  • JavaScript 2.6%
  • Dockerfile 1.9%
  • Shell 0.9%