Initial commit of Discord GLHF Bot with core functionality, configuration, and dependencies.

This commit is contained in:
pacnpal
2025-02-11 15:34:02 -05:00
commit 908f1912bb
63 changed files with 205192 additions and 0 deletions

22
ecosystem.config.js Normal file
View File

@@ -0,0 +1,22 @@
module.exports = {
apps: [
{
name: "discord-bot",
script: "uv",
args: "run discord_glhf.py",
watch: true,
ignore_watch: [
"discord_bot.log",
"queue_state.json",
"logs",
"log",
"*.log",
"*.db",
"*.db-*",
"__pycache__",
"venv",
"node_modules"
],
},
],
};