Skip to content

This is discord bot specifically made for Community Classroom

License

Notifications You must be signed in to change notification settings

Amrutha1101/classroom-monitor-bot

 
 

Repository files navigation

Classroom Monitor Bot

This bot provides functionalities for 'Community Classroom' discord server.

Community Classroom is an initiative 'for the students, by a student'. The initiative aims to provide 'quality education which is free for all'.

Follow us and be a part of this amazing community.


About :

We believe that every student, irrespective of their college or branch, can make it big. Community Classroom is an initiative built on this thought. We provide hands-on training, mentorship and have an inclusive community. All of our courses are FREE and better than most paid courses. We cover every topic in detail and mentor you to stand out and get opportunities by breaking all the barriers. Get expert guidance with career, Open Source, and internships, jobs around the world.

Note to all contributors

Thank you for putting your time to contribute and helping others out. Before contributing do kindly read and follow Code of conduct To get started with contributing go through the following steps

Prerequisites

System requirement

  1. Any system with basic configuration.
  2. Operating System : Windows / Linux / Mac

Software requirement

  1. Node.js installed (If not download it here).
  2. Any text editor of your choice.
  3. Discord account and a discord server where you have admin access

Skill requirement

  1. Knowledge of git & github.
  2. JavaScript
  3. NodeJS
  4. expressJS

Setting up Local Environment

Forking repository

  1. Firstly to make your own copy of the project you have to fork the repository. To fork the repository press the fork button. In case of any difficulty refer to the image below Demo fork image

Clone repository

  1. Now after you have forked your project its time to clone it into your local device so that you can work on it
  2. In your forked repository click on the green code button and copy the provided link. In case of any difficulty refer to the image below Demo copy image
  3. Now in your desktop open git bash and type git clone <your-clone-url>.git and press enter
  4. Now, your forked repo has been cloned in your device

Contributing

Before starting make sure you have developer mode enabled in your discord If not then got to Settings > Advanced > Developer Mode: ON

Creating a branch

Whenever you want to contribute to any project it is a good practice to make a separate branch and push it as PR rather than making changes to the main/master branch

  1. git checkout -b <your-branch-name> will make a separate branch and will take you to it
  2. Now you are ready to make your desired changes

Setting up application and creating bot

  1. First visit here
  2. Login with your discord credentials and will see the screen(image below and for you it will probably be a blank one) home page
  3. Now click the New Application button(refer to image above)
  4. Name your bot and press create
  5. Now you will appear at the application dashboard where you can customize your bot(refer to image below) dashboard
  6. Now to create your bot instance go to Bot tab and pressAdd Bot followed by Yes,do it in the following popup(refer to image below) bot instance
  7. Now you will appear to this screen(image below) bot dashboard
  8. Go to OAuth2 and copy the client id(refer to image below) bot dashboard
  9. Now to invite the bot to your server, paste this link in your browser https://discord.com/api/oauth2/authorize?client_id=<app-id>&permissions=8&scope=bot and just replace <app-id> with your copied client id
  10. Now you will be redirected to this screen(image below) where you have to select a server and click on continue and authorize after that server page
Now your bot will be added to your server but it is still offline. So let's start...

Coding our Bot

  1. Open the folder of your cloned repository with any text editor of your choice
  2. Now go to developers portal where you created the bot and copy the bot token from Bot tab(refer to image below) bot token
  3. Now create a .env file in your root folder and copy everything from .env-sample file and replace the BOT-TOKEN value with the copied token. Note that the .env file should be nameless. Create a file with no name, and just the extenstion of .env. If you add a name to the file, npm start will not be able to access the token.
  4. In the terminal run npm install, this will install all the packages
  5. Then to start our server run npm start, this will start our server and the bot will be online

Commands Supported :

cm!help - Helps with the commands and features what the bot offers.

cm!hey - Says 'Hey' to the user.

cm!version - Displays the current running version of the bot.

cm!links - Displays all the social accounts of the community.

cm!translate <text> - Translate given text to English.

cm!meme - Send a meme from r/programmerhumor.

This bot is reserved for functionalities offered for community classroom community.

=======

Commit Message

After making the desired changes and testing use git add . command to add the files to the Git staging area. This area contains a list of all the files you have recently changed.

git commit -m <Type in the commit message> to commit your changes to save your changes to the local repository.

We follow conventional commits specifications for our commit messages

Commit Message Format

Each commit message consists of a header, a body, and a footer.

<header>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

Any line of the commit message cannot be longer than 100 characters.

Commit Message Header

<type>(<scope>): <short summary>
  │       │             │
  │       │             └─⫸ Summary in present tense. Not capitalized. No period at the end.
  │       │
  │       └─⫸ Commit Scope: animations|bazel|benchpress|common|compiler|compiler-cli|core|
  │                          elements|forms|http|language-service|localize|platform-browser|
  │                          platform-browser-dynamic|platform-server|router|service-worker|
  │                          upgrade|zone.js|packaging|changelog|dev-infra|docs-infra|migrations|
  │                          ngcc|ve
  │
  └─⫸ Commit Type: build|ci|docs|feat|fix|perf|refactor|test

The <type> and <summary> fields are mandatory, the (<scope>) field is optional.

Type

Must be one of the following:

  • feat Commits, that adds a new feature
  • fix Commits, that fixes a bug
  • refactor Commits, that rewrite/restructure your code, however does not change any behaviour
  • perf Commits are special refactor commits, that improves performance
  • style Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
  • test Commits, that add missing tests or correcting existing tests
  • docs Commits, that affect documentation only
  • build Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...
  • ops Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
  • chore Miscellaneous commits e.g. modifying .gitignore
Scope

The scope provides additional contextual information.

  • Is an optional part of the format
  • Allowed Scopes depends on the specific project
  • Don't use issue identifiers as scopes
Summary

Use the summary field to provide a succinct description of the change:

  • use the imperative, present tense: "fix" not "fixed" nor "fixes"
  • don't capitalize the first letter
  • No dot (.) at the end
  • Your commit message should not contain any whitespace errors
  • Remove unnecessary punctuation marks

Commit Message Body

  • The body should include the motivation for the change and contrast this with previous behavior. This commit message should explain why you are making the change.
  • Is an optional part of the format
  • Use the imperative, present tense: "fix" not "fixed" nor "fixes"
  • This is the place to mention issue identifiers and their relations

Commit Message Footer

The footer can contain information about breaking changes and is also the place to reference GitHub issues, and other PRs that this commit closes or is related to.

BREAKING CHANGE: <breaking change summary>
<BLANK LINE>
<breaking change description + migration instructions>
<BLANK LINE>
<BLANK LINE>
Fixes #<issue number>

Breaking Change section should start with the phrase "BREAKING CHANGE: " followed by a summary of the breaking change, a blank line, and a detailed description of the breaking change that also includes migration instructions.

It's an optional part of the format.

Creating commits

  • type: :emoji: summary (changes made)
    

To know which type to use refer this

To find suitable emoji for the changes refer this

For summary refer this

Some of the tips to write good commit message

  • Separate the subject from the body with a blank line
  • Your commit message should not contain any whitespace errors
  • Remove unnecessary punctuation marks
  • Do not end the subject line with a period
  • Capitalize the subject line and each paragraph
  • Use the imperative mood in the subject line
  • Use the body to explain what changes you have made and why you made them.
  • Do not assume the reviewer understands what the original problem was, ensure you add it.
  • Do not think your code is self-explanatory
  • Follow the commit convention defined by your team

Example

feat: :sparkles: add the amazing button

Contributors :

Every contributor's efforts and time are deeply appreciated 😄

About

This is discord bot specifically made for Community Classroom

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.9%
  • Shell 1.1%