12 lines
128 B
Bash
Executable file
12 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
if ! [ -d venv ]
|
|
then ./setup.sh
|
|
fi
|
|
. venv/bin/activate
|
|
|
|
|
|
./src/main.py
|