V1.0.0-beta.1 #1

Merged
AstroGD merged 10 commits from dev into main 2022-11-24 21:29:42 +01:00
3 changed files with 6 additions and 2 deletions
Showing only changes of commit 317da97cd3 - Show all commits

View File

@ -1,7 +1,7 @@
FROM node:18-alpine AS builder FROM node:18-alpine AS builder
ENV NODE_ENV=production ENV NODE_ENV=production
# RUN apk add --no-cache python3 make g++
COPY build/package*.json ./ COPY build/package*.json ./
RUN apk add --no-cache python3 make g++
RUN npm install --omit=dev RUN npm install --omit=dev
FROM node:18-alpine AS app FROM node:18-alpine AS app

View File

@ -1,6 +1,10 @@
# eu.astrogd.white-leopard # eu.astrogd.white-leopard
A Discord bot that checks Discord channel names for banned words and prevents renaming of them A Discord bot that checks Discord channel names for banned words and prevents renaming of them
## Commands
### /logchanel [channel?]
Sets the channel where the bot will log if a channel meets the banned word criteria. If channel is omitted, the log channel will be disabled.
## Environment variables ## Environment variables
| Name | Description | Required | Example | | Name | Description | Required | Example |
| :---------- | :------------------------------------------------------------ | :------: | :------------------ | | :---------- | :------------------------------------------------------------ | :------: | :------------------ |

View File

@ -1,7 +1,7 @@
version: "2" version: "2"
services: services:
app: app:
image: astrogd/white-leopard image: astrogd/white-leopard:dev
build: ./ build: ./
depends_on: depends_on:
- database - database