OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/bin/rebuild_frontend

7 lines
260 B

#!/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