2015-03-14 03:07:42 +03:00
#!/bin/bash
2016-05-01 08:26:33 +03:00
WORK_DIR = " $( dirname " $0 " ) "
PROJECT_DIR = " $( dirname " $WORK_DIR " ) "
2015-04-24 15:12:34 +03:00
pip --version >/dev/null 2>& 1 || {
2015-03-14 03:07:42 +03:00
echo >& 2 -e "\npip is required but it's not installed."
echo >& 2 -e "You can install it by running the following command:\n"
2016-08-21 23:11:01 +03:00
{ % if cookiecutter.use_python3 = = 'y' -%}
2015-08-31 04:56:19 +03:00
echo >& 2 "wget https://bootstrap.pypa.io/get-pip.py --output-document=get-pip.py; chmod +x get-pip.py; sudo -H python3 get-pip.py"
2016-03-23 23:38:43 +03:00
{ % else %}
echo >& 2 "wget https://bootstrap.pypa.io/get-pip.py --output-document=get-pip.py; chmod +x get-pip.py; sudo -H python2 get-pip.py"
{ %- endif %}
2015-03-14 03:07:42 +03:00
echo >& 2 -e "\n"
echo >& 2 -e "\nFor more information, see pip documentation: https://pip.pypa.io/en/latest/"
exit 1;
}
2015-04-24 15:12:34 +03:00
virtualenv --version >/dev/null 2>& 1 || {
2015-03-14 03:07:42 +03:00
echo >& 2 -e "\nvirtualenv is required but it's not installed."
echo >& 2 -e "You can install it by running the following command:\n"
2016-08-21 23:11:01 +03:00
{ % if cookiecutter.use_python3 = = 'y' -%}
2015-08-31 04:56:19 +03:00
echo >& 2 "sudo -H pip3 install virtualenv"
2016-03-23 23:38:43 +03:00
{ % else %}
echo >& 2 "sudo -H pip2 install virtualenv"
{ %- endif %}
2015-03-14 03:07:42 +03:00
echo >& 2 -e "\n"
echo >& 2 -e "\nFor more information, see virtualenv documentation: https://virtualenv.pypa.io/en/latest/"
exit 1;
}
if [ -z " $VIRTUAL_ENV " ] ; then
echo >& 2 -e "\nYou need activate a virtualenv first"
echo >& 2 -e 'If you do not have a virtualenv created, run the following command to create and automatically activate a new virtualenv named "venv" on current folder:\n'
2016-08-21 23:11:01 +03:00
{ % if cookiecutter.use_python3 = = 'y' -%}
2015-08-31 04:56:19 +03:00
echo >& 2 -e "virtualenv venv --python=\`which python3\`"
2016-03-23 23:38:43 +03:00
{ % else %}
echo >& 2 -e "virtualenv venv --python=\`which python2\`"
{ %- endif %}
2015-03-14 03:07:42 +03:00
echo >& 2 -e "\nTo leave/disable the currently active virtualenv, run the following command:\n"
echo >& 2 "deactivate"
echo >& 2 -e "\nTo activate the virtualenv again, run the following command:\n"
echo >& 2 "source venv/bin/activate"
echo >& 2 -e "\nFor more information, see virtualenv documentation: https://virtualenv.pypa.io/en/latest/"
echo >& 2 -e "\n"
exit 1;
else
2016-05-01 08:26:33 +03:00
pip install -r $PROJECT_DIR /requirements/local.txt
pip install -r $PROJECT_DIR /requirements/test.txt
{ % if cookiecutter.use_heroku = = "y" -%}
pip install -r $PROJECT_DIR /requirements.txt
{ %- endif %}
2015-03-14 03:07:42 +03:00
fi
2016-03-23 23:38:43 +03:00