8 lines
211 B
Bash
8 lines
211 B
Bash
#!/bin/bash
|
|
if [ ! -d "venv" ]; then
|
|
python3 -m venv venv
|
|
fi
|
|
source venv/bin/activate
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pgrep -f "python src/main.py" > /dev/null || python src/main.py |