diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index b5ae78f..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,7 +0,0 @@ -contact_links: - - name: ❔ Questions / Help - url: https://github.com/eritislami/evobot/discussions - about: Please use GitHub Discussions for help and questions, do not start an issue. - - name: 📃 Discord.js Guide - url: https://discordjs.guide/ - about: The official guide for discord.js diff --git a/Dockerfile b/Dockerfile index 852834c..5e30c2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG NODE_VERSION=18.18.2-slim FROM node:${NODE_VERSION} as base -ENV USER=evobot +ENV USER=Apollo RUN apt-get update && \ apt-get install -y --no-install-recommends python3 build-essential && \ @@ -9,10 +9,10 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* RUN groupadd -r ${USER} && \ - useradd --create-home --home /home/evobot -r -g ${USER} ${USER} + useradd --create-home --home /home/apollo -r -g ${USER} ${USER} USER ${USER} -WORKDIR /home/evobot +WORKDIR /home/apollo FROM base as build @@ -26,7 +26,7 @@ RUN rm -rf node_modules && \ FROM node:${NODE_VERSION} as prod COPY --chown=${USER}:${USER} package*.json ./ -COPY --from=build --chown=${USER}:${USER} /home/evobot/node_modules ./node_modules -COPY --from=build --chown=${USER}:${USER} /home/evobot/dist ./dist +COPY --from=build --chown=${USER}:${USER} /home/apollo/node_modules ./node_modules +COPY --from=build --chown=${USER}:${USER} /home/apollo/dist ./dist CMD [ "node", "./dist/index.js" ] \ No newline at end of file diff --git a/README.md b/README.md index 4432c34..b741fd8 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ -![Node build](https://github.com/eritislami/evobot/actions/workflows/node.yml/badge.svg) -![Docker build](https://github.com/eritislami/evobot/actions/workflows/docker.yml/badge.svg) [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) ![logo](https://repository-images.githubusercontent.com/186841818/8aa95700-7730-11e9-84be-e80f28520325) -# 🤖 EvoBot (Discord Music Bot) -> EvoBot is a Discord Music Bot built with TypeScript, discord.js & uses Command Handler from [discordjs.guide](https://discordjs.guide) ## Requirements @@ -17,8 +13,6 @@ ## 🚀 Getting Started ```sh -git clone https://github.com/eritislami/evobot.git -cd evobot npm install ``` @@ -43,10 +37,9 @@ Copy or Rename `config.json.example` to `config.json` and fill out the values: ## 🐬 Docker Configuration -For those who would prefer to use our [Docker container](https://hub.docker.com/repository/docker/eritislami/evobot), you may provide values from `config.json` as environment variables. ```shell -docker run -e "TOKEN=" eritislami/evobot +docker run -e "TOKEN=" f04c/apollo ``` ## 📝 Features & Commands @@ -125,13 +118,3 @@ Currently available locales are: - Vietnamese (vi) - Check [Contributing](#-contributing) if you wish to help add more languages! - For languages please use [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) two letter format - -## 🤝 Contributing - -1. [Fork the repository](https://github.com/eritislami/evobot/fork) -2. Clone your fork: `git clone https://github.com/your-username/evobot.git` -3. Create your feature branch: `git checkout -b my-new-feature` -4. Stage changes `git add .` -5. Commit your changes: `cz` OR `npm run commit` do not use `git commit` -6. Push to the branch: `git push origin my-new-feature` -7. Submit a pull request diff --git a/app.json b/app.json index f95c5d6..e9c6beb 100644 --- a/app.json +++ b/app.json @@ -1,7 +1,5 @@ { - "name": "EvoBot", - "description": "🤖 Discord Music Bot built with discord.js", - "repository": "https://github.com/eritislami/evobot", - "logo": "https://i.imgur.com/JFxgbWH.png", + "name": "Apollo", + "description": "Discord Music Bot built with discord.js", "keywords": ["discord", "discordjs", "typescript", "music", "bot"] } diff --git a/package-lock.json b/package-lock.json index ad1982e..7cc50a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "evobot", + "name": "apollo", "version": "2.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "evobot", + "name": "apollo", "version": "2.9.0", "dependencies": { "@discordjs/voice": "^0.17.0", diff --git a/package.json b/package.json index 85a2ab2..76bf616 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,10 @@ { - "name": "evobot", + "name": "apollo", "version": "2.9.0", "description": "Discord music bot built with discord.js", "main": "index.ts", "author": "Erit Islami ", "private": true, - "homepage": "https://github.com/eritislami/evobot", - "repository": "github:eritislami/evobot", - "bugs": "https://github.com/eritislami/evobot/issues", "engines": { "node": ">=16.11.0" },