2014-08-01 15:20:58 +00:00
|
|
|
if [ $NODE_ENV == 'production' ]; then
|
|
|
|
node ./node_modules/coffee-script/bin/coffee -c ./src
|
2014-08-07 20:20:49 +00:00
|
|
|
# We don't need coffee-script at runtime
|
2014-08-01 15:20:58 +00:00
|
|
|
npm uninstall coffee-script
|
2014-08-07 20:21:53 +00:00
|
|
|
# Empty the apt and npm caches of the packages we installed
|
|
|
|
npm cache clean
|
|
|
|
apt-get clean
|
2014-08-07 20:20:49 +00:00
|
|
|
# Remove deploy key
|
|
|
|
rm -rf /root/.ssh/* deploy_key
|
|
|
|
# Remove unnecessary source files
|
|
|
|
rm -rf Makefile src/*.coffee
|
2014-08-07 20:28:15 +00:00
|
|
|
# Remove the git repo info
|
|
|
|
rm -rf .git
|
2014-08-07 20:47:36 +00:00
|
|
|
# Remove the c files we no longer need (the sqlite3 node module has a massive ~5M c file)
|
|
|
|
find . -name '*.c' -delete
|
|
|
|
# And the tar files (sqlite3 module again)
|
|
|
|
find . -name '*.tar.*' -delete
|
2014-08-01 15:20:58 +00:00
|
|
|
fi
|