this is a rewrite of the bot in typescript. detritus is used as a discord library instead of discord.js
This commit is contained in:
spiral 2022-10-21 17:22:01 +00:00
parent 6688d4dcd8
commit 56091a6df7
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
33 changed files with 731 additions and 1116 deletions

View file

@ -1,6 +1,6 @@
FROM alpine:latest
RUN apk add nodejs-current yarn
RUN apk add nodejs-current npm yarn git
WORKDIR /app
COPY package.json yarn.lock /app/
@ -8,4 +8,4 @@ RUN yarn
COPY . /app
CMD ["node", "bot.js"]
CMD ["yarn", "ts-node", "bot.ts"]