02a7b2d5d8
* feat: minimal working version * chore: clean swap files * chore: amend gitignore to include swaps * chore: typecheck * wip: ignore git, support dir * wip: ignores, directory handling * wip: add prompting, better path management * refactor: centralize printing * wip: handle jsondecodeerror * docs: README * chore: add inquirer to dependencies * wip: error handling when not in git
9 lines
186 B
Text
9 lines
186 B
Text
VENV_NAME="carboncopy.venv"
|
|
REQ_FILE="./requirements.txt"
|
|
|
|
pyenv uninstall -f $VENV_NAME
|
|
pyenv install -s
|
|
pyenv virtualenv $VENV_NAME
|
|
pyenv activate $VENV_NAME
|
|
|
|
pip install -r $REQ_FILE
|