Skip to content

Commit ba8f295

Browse files
committed
Remove references to Discord bot in documentation
1 parent ce0d460 commit ba8f295

File tree

4 files changed

+2
-37
lines changed

4 files changed

+2
-37
lines changed

docs/deployment/configuration.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,10 @@ The following variables, located in the main settings file[^1], map to various P
106106
Variable | Default | Description
107107
---|---|---
108108
ANNOUNCEMENT_WEBHOOK_URL | None | URL of Discord server's announcement channel webhook |
109-
BOT_CHANNEL_WEBHOOK_URL | None | URL of Discord server's bot command channel webhook |
110-
GUILD_ID | 0 | Discord server's Guid ID |
111-
SCRAPE_BOT_TOKEN | None | Discord bot token required by the LFG helper bot |
112109

113110
## Misc
114111

115-
The following variables, located in the main settings file[^1], map to miscellaneous PCS specific settings. A link to relevant documentation is provided for each variable.
112+
The following variables, located in the main settings file[^2], map to miscellaneous PCS specific settings. A link to relevant documentation is provided for each variable.
116113

117114
Variable | Default | Description
118115
---|---|---

docs/deployment/docker/docker_compose.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -40,29 +40,6 @@ services:
4040
- rabbitmq
4141
- celery_worker
4242
restart: unless-stopped
43-
scrape_bot:
44-
image: contestsuite:dev
45-
command: /docker/start.sh bot
46-
environment:
47-
# Django
48-
DEBUG: 'True'
49-
50-
# Database
51-
SQL_DATABASE: contestsuite
52-
SQL_USER: contestadmin
53-
SQL_PASSWORD: seminoles1!
54-
55-
# Discord
56-
BOT_CHANNEL: # Name of command channel
57-
GUILD_ID: # Discord Server ID
58-
SCRAPE_BOT_TOKEN: # Token for the member list scraping bot
59-
volumes:
60-
- ../src:/app
61-
networks:
62-
- contestsuite
63-
depends_on:
64-
- mariadb
65-
- django
6643
celery_worker:
6744
image: contestsuite:dev
6845
command: /docker/start.sh worker debug

docs/deployment/docker/docker_image.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ REQUIREMENTS | requirements.txt | Path to the manifest file to use during image
2424

2525
## Run Image
2626

27-
The `Dockerfile` specifies an image capable of running the Django web app, Celery, or a helper Discord bot. The parameters passed to the image's start script `start.sh` determine the container's behavior.
27+
The `Dockerfile` specifies an image capable of running the Django web app with Celery. The parameters passed to the image's start script `start.sh` determine the container's behavior.
2828

2929
```bash
3030
docker run <image_name> /docker/start.sh <PROCESS_TYPE> <MODE>
@@ -36,7 +36,6 @@ server | Yes | Gunicorn server bound to the Django app
3636
worker | No | Celery Worker
3737
beat | No | Celery Beat
3838
flower | No | Celery Flower
39-
bot | No | Discord bot
4039

4140
`MODE` | Default | Usage
4241
---|---|---

docs/usage/contest_administration/contest_dashboard.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,5 @@ The Contest Dashboard centralizes many of the administrator actions available in
3131
- **Account Tools**
3232
- Manually activate a user account. Useful if a registrant has issues verifying their account.
3333
- Mark a given team as a Faculty Team
34-
- **Discord Tools**
35-
- Creates the Upper/Lower Division Looking For Group roles on a Discord server
36-
- server specified by `GUILD_ID` configuration variable
37-
- Removes the Upper/Lower Division Looking For Group roles on a Discord server
38-
- server specified by `GUILD_ID` configuration variable
39-
- **Clear Discord Channel**
40-
- Clears a channel on a Discord server of all content
41-
- server specified by `GUILD_ID` configuration variable
4234
- **Volunteers**
4335
- Displays all volunteers registered in the system, whether they have registered for extra credit, and if they've checked into the contest

0 commit comments

Comments
 (0)