Initial commit

This commit is contained in:
2024-12-30 11:42:12 -07:00
commit 09ba4114c1
86 changed files with 7522 additions and 0 deletions

17
discord-bot/run.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
docker pull node:20
docker pull python:3.10
docker build -t discord-bot .
# docker run -it --rm discord-bot
echo $DISCORD_SECRET
docker rm -f discord-bot || true
docker run -d \
--name discord-bot \
-e DISCORD_SECRET=$DISCORD_SECRET \
--restart always\
-p 0.0.0.0:5677:5677 \
-p 0.0.0.0:5678:5678 \
discord-bot