Files
meshing-around/launch.sh
2024-07-10 19:15:42 -07:00

32 lines
586 B
Bash
Executable File

#!/bin/bash
# launch.sh
cd "$(dirname "$0")"
printf "\n\nLaunches the bot in a virtual environment"
# activate the virtual environment if it exists
if [ -d "venv" ]; then
source venv/bin/activate
fi
if [ ! -d "venv" ]; then
echo "No virtual environment found. Please run install.sh to set one up"
exit 1
fi
if [ ! -f "config.ini" ]; then
cp config.template config.ini
fi
# launch the application
if [ "$1" == "pong" ]; then
python pong_bot.py
elif [ "$1" == "mesh" ]; then
python mesh_bot.py
else
echo "Please provide a bot to launch (pong/mesh)"
fi