18 lines
520 B
Bash
Executable file
18 lines
520 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd /app
|
|
rm -rf node_modules
|
|
yarn install
|
|
mkdir -p /app/publichealth/static/libs
|
|
echo "created /app/publichealth/static/libs contents "
|
|
ls /app/publichealth/static/libs
|
|
cp -rf node_modules/@bower_components/* /app/publichealth/static/libs/
|
|
|
|
# static resources
|
|
python manage.py collectstatic --no-input -i media --settings=publichealth.settings.production
|
|
python manage.py compress --force --settings=publichealth.settings.production
|
|
|
|
if [ -d /app/static ]; then
|
|
echo "Copying"
|
|
cp -a /app/static /pod
|
|
fi
|