#!/bin/sh
# things that need to be done on deployment
 
cd ./wp-content/themes/chop
npm install 

cd ../chop-child
composer install --no-dev
npm install
npm run production
node ./node_modules/gulp/bin/gulp.js --production
