#!/bin/bash pm2 stop all mv /www/index.php /tmp/index.php rm -rf /www/* mv /tmp/index.php /www/index.php ln -sf /app/docs /www ln -sf /app/fonts /www ln -sf /app/images /www ln -sf /app/libs /www ln -sf /app/lib /www # PM2 Style pm2 delete all pm2 start sass-watcher.js -- recompile pm2 start javascript-watcher.js -- recompile pm2 start jade-watcher.js -- recompile # pm2 start pug-watcher.js -- recompile # pm2 start assets-watcher.js -- recompile