Skip to content

Instantly share code, notes, and snippets.

@schoeffman
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schoeffman/82852fa9ff033e442cc6 to your computer and use it in GitHub Desktop.
Save schoeffman/82852fa9ff033e442cc6 to your computer and use it in GitHub Desktop.
For easy docker image script changes
#!/bin/bash
set -e
echo "=> Begin Initialize Script"
echo "=> Export NVM path"
export NVM_DIR="/usr/local/nvm"
echo "=> Load NVM"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
echo "=> Enter Mobile project directory"
cd /code/mobilefe
echo "=> Run Grunt"
grunt server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment