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.
codesearch/script/bootstrap
Marc Cataford 3b5c593444
Initial up (#1)
* wip: functional version

* refactor: indices, settings

* refactor: minor

* chore: extraneous $

* refactor: corpus, document model

* wip: (dirty) split indexing in processes

* wip: tidy up threaded indexing

* wip: prefix tree

* wip: rejig colors, logging

* wip: (dirty) buffer instead of large socket msg

* refactor: tidy

* wip: (dirty) curses cli

* wip: (dirty) more curses

* test: cov

* chore: package reorg
2023-01-11 00:57:28 -05:00

15 lines
492 B
Text

VENV=codesearch.venv
#################################################################
# Bootstrapping sets up the Python 3.8 venv that allows the use #
# of the invoke commands. #
#################################################################
{
pyenv virtualenv-delete -f $VENV
pyenv virtualenv $VENV &&
pyenv activate $VENV &&
python -m pip install -U pip &&
pip install -r requirements.txt &&
echo "✨ Good to go! ✨"
}