Open-Source at Illinois' Official Discord bot repo
Made with typescript, discord.js and <3
- Git
- nodejs >= 16.10.0
- NPM
- Install the latest version of git
- Install the latest release (not LTS) version of Nodejs (v 16.10.0 or up) https://nodejs.org/en/download/current/
- Create a fork of this repo https://github.com/open-source-at-illinois/osai-bot.
git clone "https://github.com/your_username_/Project_Name.git" osai-bot cd osai-bot - Go look at the Issues tab here to find interesting contributions to make
- NOTE: If you have an idea for implementing your own command, let us know and feel free to work on it instead!
- Comment "Working on this" on the issue you're going to patch.
- Create a file labelled
<command_title>.tsin thesrc/commands/directory. - Code! Follow clean syntax and styling guidelines consistent with the rest of the codebase.
- TIP: Refer to the sample code in the /cat and /dice commands under src/commands
- NOTE: If you're new to discord.js, copy over the code from one of the existing command files into your new file.
- Commit and push your patches, then make a pull request from your fork to this repository.
- TIP: Refer to the Git Command Bank below
- We will review your code and suggest some fixes for you to work on.
Congratulations! Once your code is fixed, it will be merged into the existing codebase and permanently featured on our Discord server <3
You will need a discord token for testing your code. We will provide one for the duration of this workshop.
- Create a
.envfile in theosai-botfolder and paste the discord token - Run
npm installto install the required dependencies - Run
npm run start-fullto get theCanarybot up and running! - Go to the
#testingchannel in the OSAI discord server, and test out your command using theCanarybot.
git clone <url> <alias>git statusgit add <optional: filenames>git commit -m "<commit message>": ensure commit message adheres to the respective guidlines. Ex: feat-132-CRM-revampgit push origin maingit pullgit checkout -b "<branch_name>"
Workshop slides: https://docs.google.com/presentation/d/10Y23KrYWuA4epP0soXQKhlwYsC9Ecp2Ta15KOmDXyBg/edit?usp=sharing