First working version of jellyseerr discord bot

This commit is contained in:
2025-05-25 16:05:57 +02:00
commit 1748432ddb
12 changed files with 9249 additions and 0 deletions

21
run.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
# Exit on error
set -e
# Check if virtual environment exists
if [ ! -d ".venv" ]; then
echo "Creating virtual environment..."
python3 -m venv .venv
fi
# Activate virtual environment
source .venv/bin/activate
# Install dependencies
echo "Installing dependencies..."
pip install -r requirements.txt
# Run the bot
echo "Starting Discord Jellyseerr Bot..."
python main.py