mirror of
https://github.com/agresdominik/predictify.git
synced 2026-04-21 17:55:49 +00:00
15 lines
263 B
Bash
Executable File
15 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Starup the predictify scraper
|
|
|
|
if test -f ./requirements.txt
|
|
then
|
|
python3 -m venv .venv
|
|
.venv/bin/pip install -r ./requirements.txt
|
|
else
|
|
printf "Missing requirements file! aborting...\n"
|
|
exit 1
|
|
fi
|
|
|
|
.venv/bin/python3 src/runtime.py
|