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.
carboncopy/script/bootstrap
Marc Cataford 02a7b2d5d8
Initial upload (#1)
* 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
2020-01-05 14:46:10 -05:00

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