aboutsummaryrefslogtreecommitdiff
path: root/174bg/discord-bot/README.md
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-21 23:02:52 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-21 23:02:52 +0100
commitda0509c91376f56f133872eddd2e4282d76f215e (patch)
tree7d39fb76ab89855d17fab28ca7e000b3acd9a89d /174bg/discord-bot/README.md
parent764f90577eeadd653f3f6248fbf2b0918c97a3d5 (diff)
downloadunnamed-group-da0509c91376f56f133872eddd2e4282d76f215e.tar
unnamed-group-da0509c91376f56f133872eddd2e4282d76f215e.tar.gz
unnamed-group-da0509c91376f56f133872eddd2e4282d76f215e.tar.bz2
unnamed-group-da0509c91376f56f133872eddd2e4282d76f215e.tar.xz
unnamed-group-da0509c91376f56f133872eddd2e4282d76f215e.zip
more org changes
Diffstat (limited to '174bg/discord-bot/README.md')
-rw-r--r--174bg/discord-bot/README.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/174bg/discord-bot/README.md b/174bg/discord-bot/README.md
index dc65293..eaff01a 100644
--- a/174bg/discord-bot/README.md
+++ b/174bg/discord-bot/README.md
@@ -1,41 +1,3 @@
# 174BG Discord Bot
This repository contains the source code for the official Discord bot for the 174th Battle Group community. The bot is written in JavaScript using the [discord.js](https://discord.js.org) library.
-
-## Features
-
-- `/create-requisition-ticket` — Creates a private ticket channel under the **tickets** category so a member can submit a request to the Quartermaster role.
-- `/delete-all-requisition-tickets` — Bulk-deletes all open requisition tickets. Restricted to administrators.
-- Logs ticket activity (creation and closure) to a **logs** channel.
-
-## Setup
-
-1. Install dependencies:
-
- ```sh
- npm install
- ```
-
-2. Copy `.env.example` to `.env` and fill in the values:
-
- ```
- DISCORD_CLIENT_ID=
- DISCORD_BOT_TOKEN=
- ```
-
-3. Run the bot:
-
- ```sh
- npm start
- ```
-
- During development, use `npm run dev` (or `npm run dev:watch` to restart on file changes) to load the `.env` file automatically.
-
-## Deployment
-
-A `Dockerfile` is provided to build and run the bot in a container:
-
-```sh
-docker build -t 174bg-discord-bot .
-docker run --env-file .env 174bg-discord-bot
-```