nightr/server/activate.sh
Casper V. Kristensen b3b3303213
Yeah boi.
2019-04-06 01:16:02 +02:00

20 lines
370 B
Bash
Executable file

[ -d venv ]
FIRST_RUN=$?
# Create and enter virtual environment
if (( $FIRST_RUN )); then
echo Creating virtual environment
python3 -m venv venv
fi
source venv/bin/activate
# Install required python packages
if (( $FIRST_RUN )); then
echo Installing required Python packages
pip install -Ur requirements.txt
fi
function run() {
python -m nightr
}