d2a6cfe378
* 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
15 lines
504 B
Text
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! ✨"
|
|
}
|