18 lines
390 B
Bash
Executable File
18 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
# Simple runner script for Debate Bots Web UI
|
|
|
|
# Check if virtual environment exists
|
|
if [ ! -d "venv" ]; then
|
|
echo "No virtual environment found. Creating one..."
|
|
python3 -m venv venv
|
|
echo "Installing dependencies..."
|
|
source venv/bin/activate
|
|
pip install -r requirements.txt
|
|
else
|
|
source venv/bin/activate
|
|
fi
|
|
|
|
# Run the web UI server
|
|
python run_webui.py
|
|
|