nightr/server/activate.sh

18 lines
335 B
Bash
Raw Normal View History

2019-04-05 21:49:50 +02:00
[ -d venv ]
FIRST_RUN=$?
# Create and enter virtual environment
if (( $FIRST_RUN )); then
echo Creating virtual environment
2019-04-06 14:35:48 +02:00
python3.7 -m venv venv
2019-04-05 21:49:50 +02:00
fi
source venv/bin/activate
# Install required python packages
2019-04-06 14:35:48 +02:00
echo Installing required Python packages
pip install -Ur requirements.txt
2019-04-05 22:08:41 +02:00
function run() {
2019-04-06 01:16:02 +02:00
python -m nightr
}