1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/build

29 lines
398 B
Text
Raw Normal View History

2015-10-19 13:04:49 +01:00
#!/usr/bin/env bash
2016-04-08 23:38:36 +01:00
if [ -z "$NVM_DIR" ]
then
NVM_DIR="$HOME/.nvm"
fi
. $NVM_DIR/nvm.sh
nvm install
nvm use
2015-10-19 13:04:49 +01:00
set -e
2016-04-21 17:16:03 +01:00
pyvenv env
2015-10-19 13:04:49 +01:00
env/bin/pip install -r requirements.txt --upgrade
2016-01-02 00:05:01 +00:00
scripts/get-private-data.sh
2015-10-19 13:04:49 +01:00
npm install
2016-01-29 23:46:52 +00:00
npm run build $@
2015-10-19 13:04:49 +01:00
env/bin/python manage.py collectstatic --noinput
2016-01-16 14:39:54 +00:00
2016-01-30 00:11:31 +00:00
if [[ $BUILD_PRODUCTION ]]
2016-01-16 14:39:54 +00:00
then
echo ">> Running Migrations..."
env/bin/python manage.py migrate
fi