Add comments

This commit is contained in:
Devon Mackay 2018-07-09 11:04:39 -04:00
parent 958f453442
commit 6e4c5911c3

View File

@ -1,6 +1,7 @@
# include/setup: Set up application for the first time after cloning, or set it
# back to the initial first unused state.
## Option defaults
# If CREATE_VENV is not set, set it to "true"
if [ -z "${CREATE_VENV+is_set}" ]; then
CREATE_VENV="true"
@ -11,6 +12,7 @@ if [ -z "${INSTALL_SASS+is_set}" ]; then
INSTALL_SASS="false"
fi
## Main
if [ "${CREATE_VENV}" = "true" ]; then
install_pipenv
create_virtual_environment
@ -21,4 +23,4 @@ if [ "${INSTALL_SASS}" = "true" ]; then
fi
# Install application dependencies
source ./script/bootstrap
./script/bootstrap