{"id":21903005,"url":"https://github.com/nicklamyeeman/radagast","last_synced_at":"2026-01-08T21:09:02.752Z","repository":{"id":57831203,"uuid":"527864010","full_name":"nicklamyeeman/RADAGAST","owner":"nicklamyeeman","description":"Discord Bot for Epitech","archived":false,"fork":false,"pushed_at":"2022-10-19T15:55:12.000Z","size":2268,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-05T17:16:10.569Z","etag":null,"topics":["bot","discord","discord-bot","discord-js","epitech"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nicklamyeeman.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":"2022-08-23T06:38:27.000Z","updated_at":"2024-11-26T17:06:02.000Z","dependencies_parsed_at":"2023-01-20T06:45:46.594Z","dependency_job_id":null,"html_url":"https://github.com/nicklamyeeman/RADAGAST","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicklamyeeman%2FRADAGAST","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicklamyeeman%2FRADAGAST/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicklamyeeman%2FRADAGAST/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicklamyeeman%2FRADAGAST/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nicklamyeeman","download_url":"https://codeload.github.com/nicklamyeeman/RADAGAST/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246342710,"owners_count":20761938,"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","epitech"],"created_at":"2024-11-28T15:25:07.077Z","updated_at":"2026-01-08T21:09:02.616Z","avatar_url":"https://github.com/nicklamyeeman.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- PROJECT LOGO --\u003e\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/nicklamyeeman/RADAGAST\"\u003e\n    \u003cimg src=\"doc/readme/RADAGAST.png\" alt=\"Logo\" width=\"80\" height=\"80\"\u003e\n  \u003c/a\u003e\n\n  \u003ch3 align=\"center\"\u003eRADAGAST\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    Discord Bot for Epitech La Réunion\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/nicklamyeeman/RADAGAST/wiki\"\u003e\u003cstrong\u003eExplore the docs »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/nicklamyeeman/RADAGAST/issues\"\u003eReport Bug\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/nicklamyeeman/RADAGAST/issues\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n\n\n\u003c!-- TABLE OF CONTENTS --\u003e\n## Table of Contents\n\n* [About the Project](#about-the-project)\n  * [Built With](#built-with)\n* [Getting Started](#getting-started)\n  * [Installation](#installation)\n  * [Discord Bot Development](#discord-bot-development)\n    * [Add Event](#add-event)\n    * [Add Command](#add-command)\n* [Roadmap](#roadmap)\n* [Contributing](#contributing)\n* [Contact](#contact)\n* [Acknowledgements](#acknowledgements)\n\n\n\n\u003c!-- ABOUT THE PROJECT --\u003e\n## About The Project\n\nThis project is a Discord Bot for Epitech La Réunion to manage students easily.\n\n\n### Built With\n\n* [NodeJS](https://nodejs.org/)\n* [DiscordJS](https://discord.js.org/)\n\n\n\n\u003c!-- GETTING STARTED --\u003e\n## Getting Started\n\nTo get a local copy up and running follow these simple steps.\n\n### Installation\n\n1. Clone the repo\n```sh\ngit clone https://github.com/nicklamyeeman/RADAGAST.git\n```\n2. Use npm to build and run\n```sh\nnpm install\nnpm run dev\n```\n\n\n### Discord Bot Development\n\n#### Add Event\n\nThe project allows you to add events easily by adding a js file in the `public/events/` directory.\n\n__Example :__\n```js\nmodule.exports = {\n  name: 'interactionCreate',\n  execute(interaction) {\n    if (interaction.isChatInputCommand()) {\n      const command = interaction.client.commands.get(interaction.commandName);  \n      if (!command) return;\n      try {\n        command.chatInputExecute(interaction);\n      } catch (error) {\n        console.error(error);\n        interaction.reply({ content: `Error!`, ephemeral: true });\n      }\n    }\n  },\n};\n```\n\n#### Add Command\n\nThe project allows you to add commands easily by adding a js file in the `public/commands/` directory.\n\n__Example :__\n```js\n  const { SlashCommandBuilder } = require(\"discord.js\");\n\n  module.exports = {\n    data: new SlashCommandBuilder()\n      .setName('ping')\n      .setDescription('Replies with Pong!'),\n    async chatInputExecute(interaction) {\n      return interaction.reply({content: `Pong!`, ephemeral: false});\n    }\n  };\n```\n\n\n\u003c!-- ROADMAP --\u003e\n## Roadmap\n\nSee the [open issues](https://github.com/nicklamyeeman/RADAGAST/issues) for a list of proposed features (and known issues).\n\n\n\n\u003c!-- CONTRIBUTING --\u003e\n## Contributing\n\nContributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n\n\n\u003c!-- CONTACT --\u003e\n## Contact\n\nNick LAM YEE MAN - [@nickauteen](https://twitter.com/nickauteen) - nick.lam-yee-man@epitech.eu\n\nProject Link: [https://github.com/nicklamyeeman/RADAGAST](https://github.com/nicklamyeeman/RADAGAST)\n\n\n\n\u003c!-- ACKNOWLEDGEMENTS --\u003e\n## Acknowledgements\n\n* [Best-README Template](https://github.com/othneildrew/Best-README-Template)\n\n\n\n\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[contributors-shield]: https://img.shields.io/github/contributors/nicklamyeeman/repo.svg?style=flat-square\n[contributors-url]: https://github.com/nicklamyeeman/repo/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/nicklamyeeman/repo.svg?style=flat-square\n[forks-url]: https://github.com/nicklamyeeman/repo/network/members\n[stars-shield]: https://img.shields.io/github/stars/nicklamyeeman/repo.svg?style=flat-square\n[stars-url]: https://github.com/nicklamyeeman/repo/stargazers\n[issues-shield]: https://img.shields.io/github/issues/nicklamyeeman/repo.svg?style=flat-square\n[issues-url]: https://github.com/nicklamyeeman/repo/issues\n[license-shield]: https://img.shields.io/github/license/nicklamyeeman/repo.svg?style=flat-square\n[license-url]: https://github.com/nicklamyeeman/cpm-cppm/blob/main/LICENSE\n[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square\u0026logo=linkedin\u0026colorB=555\n[linkedin-url]: https://linkedin.com/in/nicklamyeeman\n[product-screenshot]: images/screenshot.png","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicklamyeeman%2Fradagast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnicklamyeeman%2Fradagast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicklamyeeman%2Fradagast/lists"}