parent
4799abb0fe
commit
2a924dcc74
@ -1,7 +0,0 @@ |
||||
#!/bin/sh |
||||
# |
||||
# Deletes bundled javascript assets and rebuilds them. |
||||
# Useful for when your frontend doesn't work (jQuery not defined etc.) for seemingly no reason at all. |
||||
rm -rf app/assets/javascripts/bundles/* |
||||
bundle install && npm install && npm run webpack |
||||
|
@ -0,0 +1,34 @@ |
||||
#!/bin/bash |
||||
# |
||||
# Deletes bundled javascript assets and rebuilds them. |
||||
# Useful for when your frontend doesn't work (jQuery not defined etc.) for seemingly no reason at all. |
||||
|
||||
yell() { echo -e "$0: $*" >&2; } |
||||
die() { yell "$*"; exit 1; } |
||||
try() { eval "$@" || die "\n\nFailed to run '$*', check log/setup_dev.log for more information."; } |
||||
|
||||
printf "Clearing previous bundle ... " |
||||
rm -rf app/assets/javascripts/bundles/* |
||||
rm -f log/setup_dev.log |
||||
echo "done." |
||||
|
||||
printf "Bundling rails dependencies ... " |
||||
try 'bundle install >> log/setup_dev.log' |
||||
echo "done." |
||||
|
||||
echo "Installing node_modules ... " |
||||
try 'npm install >> log/setup_dev.log' |
||||
|
||||
printf "Building legacy webpack bundle ... " |
||||
try 'npm run legacy-webpack >> log/setup_dev.log' |
||||
echo "done." |
||||
|
||||
echo "---------------------------------------" |
||||
echo "Done. Now start the following services" |
||||
echo '- Rails server `RAILS_ENV=development ./bin/rails s`' |
||||
echo '- Angular CLI: `npm run serve`' |
||||
echo '- (Optional, only if you work on frontend/legacy): `npm run legacy-webpack-watch`' |
||||
echo "" |
||||
echo 'You can also run `foreman start -f Procfile.dev` to run all the above on a single terminal.' |
||||
|
||||
|
Loading…
Reference in new issue