This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/script/bootstrap

15 lines
217 B
Text
Raw Normal View History

#!/bin/bash
VENV="spadinaistan.venv"
python -m pip install pip==22.3 pip-tools==6.9.0 --no-cache
if [ ! -d "./$VENV" ]; then
python -m venv ./$VENV
fi
source ./$VENV/bin/activate
pip-sync ./requirements.txt