nightr/server/activate.sh
Casper V. Kristensen 5453d7e3ea
Fix gitignore
2019-04-05 22:08:41 +02:00

19 lines
362 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
}