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.
lambda-boilerplate/script/bootstrap
Marc Cataford d2a6cfe378
Initial version (#1)
* infra: python, bootstrap

* feat: local sample

* infra: invocations and CFN

* docs: stub

* wip: clean up, add sceptre

* wip: add app stack teardown

* refactor: template rejigging

* chore: ignore outfiles

* wip: cleanup post upload to s3

* wip: teardown infra task

* docs: links, contrib

* docs: missing command

* docs: formatting
2020-09-26 01:14:56 -04:00

15 lines
504 B
Text

VENV=lambda-boilerplate.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 dev_requirements.txt &&
echo "✨ Good to go! ✨"
}