{"id":21594415,"url":"https://github.com/cudiph/monotonebot","last_synced_at":"2025-11-03T17:46:59.936Z","repository":{"id":53070765,"uuid":"323976134","full_name":"Cudiph/monotonebot","owner":"Cudiph","description":"Was really EPIC Discord bot","archived":false,"fork":false,"pushed_at":"2021-05-09T14:10:39.000Z","size":1471,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-10T23:42:01.264Z","etag":null,"topics":["bot","discord","discord-bot","discord-js","discord-music-bot","discordjs","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Cudiph.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-23T18:35:59.000Z","updated_at":"2024-10-29T03:17:24.000Z","dependencies_parsed_at":"2022-08-30T19:50:26.384Z","dependency_job_id":null,"html_url":"https://github.com/Cudiph/monotonebot","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/Cudiph/monotonebot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cudiph%2Fmonotonebot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cudiph%2Fmonotonebot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cudiph%2Fmonotonebot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cudiph%2Fmonotonebot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cudiph","download_url":"https://codeload.github.com/Cudiph/monotonebot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cudiph%2Fmonotonebot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259519825,"owners_count":22870370,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bot","discord","discord-bot","discord-js","discord-music-bot","discordjs","mongodb","nodejs"],"created_at":"2024-11-24T17:18:16.402Z","updated_at":"2025-11-03T17:46:59.892Z","avatar_url":"https://github.com/Cudiph.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monotone Bot \n**An EPIC Discord bot written in JavaScript**\n\n## Setting up your bot\nTo create your bot application, you can read the official \n[discord.js guide](https://discordjs.guide/preparations/setting-up-a-bot-application.html#creating-your-bot)  \nAfter getting the bot token you can copy it and put in `.env` file which will be explained in the\n[running the bot](#running-the-bot) section\n\nTo add your bot to your server, look [here](https://discordjs.guide/preparations/adding-your-bot-to-servers.html)  \nThe invite link should look like this:  \n`https://discord.com/api/oauth2/authorize?client_id=762578055939620864\u0026permissions=8\u0026scope=bot`\n\nYou can try this bot by inviting the public bot with the link above\n\n## Prerequisites\n* [git][git]\n* [nodejs][nodejs]\n* [mongoDB][mongodb]\n* [yarn 2][yarn]\n* [java 13][java] and [lavalink][lavalink] (dev branch)\n\n## `.env` File\n.env is file that stored super secret information like your bot token.  \nHere is the list of variable you should put in .env file :\n- `TOKEN` = Token from the application in [discord developer portal](https://discord.com/developers/).\n- `MONGO_URL` = Full URL of the MongoDB cluster if you're using a remote database\n- `LAVA_HOST` = Address of your lavalink server\n- `LAVA_PASS` = Password of your lavalink server\n\n## Lavalink\nDownload lavalink binaries from [the CI server][lavalink] and put the jar file\nin the root directory of this project and start lavalink server with\n`$ java -jar ./Lavalink.jar`.\n\n## Running the bot\nAfter [prerequisites](#prerequisites) are installed and your bot is already in your server,  \nfollow the steps below to run it:\n1. Clone this repo with `git clone \u003cthis repo url\u003e`, or download the zipped file.\n1. Then move to the project root directory and begin with setting up the`.env` file.  \n    First copy the [`.env.example`](./.env.example)\n    file still in the current directory then paste and rename it to only `.env`.  \n    Now open the file and change the value of `TOKEN` with your secret bot token,  \n    and `MONGO_URL` with your Mongo database URI.\n1. After that you can install required dependencies with `yarn install`. (Make sure you're using\n    yarn 2 with `yarn set version 2`)\n1. Before starting the bot please check the MongoDB service if it's running and if you're running Mongo in locally\n1. And finally you can run the bot with the command `yarn start` or `npm start`\n1. Congrats! You've run the bot 🥳\n\n## Contributing\nYou can contribute almost anything from fixing grammar/typos, fixing bugs, or adding a feature\n(you can create an issue to discuss if the feature is worth to add).  \nJust fork this project and create a pull request. Any contribution will be appreciated!\n\n## Suggestion\nCreate a suggestion such as new commands or features in the issues tab.\n\n### My discord profile\nMade with ❤ by [Cudiph#7298](https://discordapp.com/users/400240052761788427)\n\n\n[git]: https://git-scm.com/downloads\n[nodejs]: https://nodejs.org/en/download/\n[mongodb]: https://docs.mongodb.com/manual/administration/install-community/\n[yarn]: https://yarnpkg.com/getting-started/install\n[java]: https://www.azul.com/downloads/zulu-community/?version=java-13-mts\u0026package=jdk\n[lavalink]: https://ci.fredboat.com/viewType.html?buildTypeId=Lavalink_Build\u0026branch_Lavalink=refs%2Fheads%2Fdev\u0026tab=buildTypeStatusDiv\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcudiph%2Fmonotonebot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcudiph%2Fmonotonebot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcudiph%2Fmonotonebot/lists"}