create-dev-env.sh 8.07 KB
Newer Older
1
#!/usr/bin/env bash
John Jarvis committed
2
set -e
3 4 5 6 7 8 9

# posix compliant sanity check
if [ -z $BASH ] || [  $BASH = "/bin/sh" ]; then
    echo "Please use the bash interpreter to run this script"
    exit 1
fi

10
trap "ouch" ERR
John Jarvis committed
11

12 13 14 15 16 17 18 19 20 21 22 23
ouch() {
    printf '\E[31m'

    cat<<EOL
    
    !! ERROR !!

    The last command did not complete successfully, 
    see $LOG for more details or trying running the
    script again with the -v flag.  

EOL
24
    printf '\E[0m'
25 26

}
John Jarvis committed
27
error() {
John Jarvis committed
28
      printf '\E[31m'; echo "$@"; printf '\E[0m' 
John Jarvis committed
29 30 31 32 33 34 35 36 37 38
}
output() {
      printf '\E[36m'; echo "$@"; printf '\E[0m' 
}
usage() {
    cat<<EO

    Usage: $PROG [-c] [-v] [-h]
    
            -c        compile scipy and numpy
39
            -s        --system-site-packages for virtualenv
John Jarvis committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
            -v        set -x + spew
            -h        this

EO
    info
}

info() {

    cat<<EO
    MITx base dir : $BASE 
    Python dir : $PYTHON_DIR
    Ruby dir : $RUBY_DIR
    Ruby ver : $RUBY_VER

EO
John Jarvis committed
56
}
John Jarvis committed
57

58 59
clone_repos() {
    cd "$BASE"
60
    
61
    if [[ -d "$BASE/mitx/.git" ]]; then
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
        output "Pulling mitx"
        cd "$BASE/mitx"
        git pull >>$LOG
    else
        output "Cloning mitx"
        if [[ -d "$BASE/mitx" ]]; then
            mv "$BASE/mitx" "${BASE}/mitx.bak.$$"
        fi
        git clone git@github.com:MITx/mitx.git >>$LOG 
    fi
    
    cd "$BASE"
    if [[ -d "$BASE/askbot-devel/.git" ]]; then
        output "Pulling askbot-devel"
        cd "$BASE/askbot-devel"
        git pull >>$LOG
    else
        output "Cloning askbot-devel"
        if [[ -d "$BASE/askbot-devel" ]]; then
            mv "$BASE/askbot-devel" "${BASE}/askbot-devel.bak.$$"
        fi
        git clone git@github.com:MITx/askbot-devel >>$LOG 
    fi
    
    cd "$BASE"
87
    if [[ -d "$BASE/data/.hg" ]]; then
88 89 90 91 92 93 94 95 96 97 98
        output "Pulling data"
        cd "$BASE/data"
        hg pull >>$LOG
        hg update >>$LOG
    else
        output "Cloning data"
        if [[ -d "$BASE/data" ]]; then
            mv "$BASE/data" "${BASE}/data.bak.$$"
        fi
        hg clone ssh://hg-content@gp.mitx.mit.edu/data >>$LOG 
    fi
99
}
John Jarvis committed
100 101 102 103 104 105 106 107

PROG=${0##*/}
BASE="$HOME/mitx_all"
PYTHON_DIR="$BASE/python"
RUBY_DIR="$BASE/ruby"
RUBY_VER="1.9.3"
NUMPY_VER="1.6.2"
SCIPY_VER="0.10.1"
108
BREW_FILE="$BASE/mitx/brew-formulas.txt"
John Jarvis committed
109
LOG="/var/tmp/install.log"
110
APT_PKGS="curl git mercurial python-virtualenv build-essential python-dev gfortran liblapack-dev libfreetype6-dev libpng12-dev libxml2-dev libxslt-dev yui-compressor coffeescript"
John Jarvis committed
111

John Jarvis committed
112 113 114 115 116
if [[ $EUID -eq 0 ]]; then
    error "This script should not be run using sudo or as the root user"
    usage
    exit 1
fi
117
ARGS=$(getopt "cvhs" "$*")
John Jarvis committed
118 119 120 121 122 123 124 125 126 127 128
if [[ $? != 0 ]]; then
    usage
    exit 1
fi
eval set -- "$ARGS"
while true; do 
    case $1 in 
        -c)
            compile=true
            shift
            ;;
129 130 131 132
        -s)
            systempkgs=true
            shift
            ;;
John Jarvis committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
        -v)
            set -x
            verbose=true
            shift
            ;;
        -h)
            usage
            exit 0
            ;;
        --)
            shift
            break
            ;;
    esac
done

cat<<EO

  This script will setup a local MITx environment, this
  includes

       * Django
       * A local copy of Python and library dependencies
       * A local copy of Ruby and library dependencies

  It will also attempt to install operating system dependencies
  with apt(debian) or brew(OSx).

  To compile scipy and numpy from source use the -c option

163
  Most of STDOUT is redirected to /var/tmp/install.log, run
164 165 166
  $ tail -f /var/tmp/install.log
  to monitor progress

John Jarvis committed
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
EO
info
output "Press return to begin or control-C to abort"
read dummy

if [[ -f $HOME/.rvmrc ]]; then
    output "$HOME/.rvmrc alredy exists, not adding $RUBY_DIR"
else
    output "Creating $HOME/.rmrc so rvm uses $RUBY_DIR"
    echo "export rvm_path=$RUBY_DIR" > $HOME/.rvmrc
fi
mkdir -p $BASE
rm -f $LOG
case `uname -s` in
    [Ll]inux)
        command -v lsb_release &>/dev/null || {
            error "Please install lsb-release."
            exit 1
        }
        distro=`lsb_release -cs`
        case $distro in
            lisa|natty|oneiric|precise)
                output "Installing ubuntu requirements"
                sudo apt-get -y update
                sudo apt-get -y install $APT_PKGS 
192
                clone_repos
John Jarvis committed
193 194 195 196
                ;;
            *)
                error "Unsupported distribution - $distro"
                exit 1
197
               ;;
John Jarvis committed
198 199 200 201 202
        esac
        ;;
    Darwin)
        command -v brew &>/dev/null || { 
            output "Installing brew"
203
            /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)" 
John Jarvis committed
204
        } 
205 206 207 208 209 210 211 212 213 214 215
        command -v git &>/dev/null || {
            output "Installing git"
            brew install git >> $LOG
        }
        command -v hg &>/dev/null || {
            output "Installaing mercurial"
            brew install mercurial >> $LOG
        }

        clone_repos

John Jarvis committed
216
        output "Installing OSX requirements"
217 218 219 220
        if [[ ! -r $BREW_FILE ]]; then
            error "$BREW_FILE does not exist, needed to install brew deps"
            exit 1
        fi
John Jarvis committed
221
        # brew errors if the package is already installed
222
        for pkg in $(cat $BREW_FILE); do
John Jarvis committed
223 224 225 226 227 228 229 230 231 232 233 234 235
            grep $pkg <(brew list) &>/dev/null || {
                output "Installing $pkg"
                brew install $pkg  >>$LOG 
            }
        done
        command -v pip &>/dev/null || {
            output "Installing pip"
            sudo easy_install pip  >>$LOG 
        }
        command -v virtualenv &>/dev/null || {
            output "Installing virtualenv"
            sudo pip install virtualenv virtualenvwrapper >> $LOG
        }
John Jarvis committed
236 237 238 239 240
        command -v coffee &>/dev/null || {
            output "Installing coffee script"
            curl http://npmjs.org/install.sh | sh
            npm install -g coffee-script
        }
John Jarvis committed
241 242 243 244 245 246
        ;;
    *)
        error "Unsupported platform"
        exit 1
        ;;
esac
247 248 249 250

output "Installing rvm and ruby"
curl -sL get.rvm.io | bash -s stable
source $RUBY_DIR/scripts/rvm
251
# skip the intro 
252
LESS="-E" rvm install $RUBY_VER
253 254 255 256 257
if [[ -n $systempkgs ]]; then
    virtualenv --system-site-packages "$PYTHON_DIR"
else
    virtualenv "$PYTHON_DIR"
fi
258 259 260 261
source $PYTHON_DIR/bin/activate
output "Installing gem bundler"
gem install bundler
output "Installing ruby packages"
262 263
# hack :(
cd $BASE/mitx  || true
264 265 266 267
bundle install

cd $BASE

John Jarvis committed
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
if [[ -n $compile ]]; then
    output "Downloading numpy and scipy"
    curl -sL -o numpy.tar.gz http://downloads.sourceforge.net/project/numpy/NumPy/${NUMPY_VER}/numpy-${NUMPY_VER}.tar.gz
    curl -sL -o scipy.tar.gz http://downloads.sourceforge.net/project/scipy/scipy/${SCIPY_VER}/scipy-${SCIPY_VER}.tar.gz
    tar xf numpy.tar.gz
    tar xf scipy.tar.gz
    rm -f numpy.tar.gz scipy.tar.gz
    output "Compiling numpy"
    cd "$BASE/numpy-${NUMPY_VER}"
    python setup.py install >>$LOG  2>&1
    output "Compiling scipy"
    cd "$BASE/scipy-${SCIPY_VER}"
    python setup.py install >>$LOG  2>&1
    cd "$BASE"
    rm -rf numpy-${NUMPY_VER} scipy-${SCIPY_VER}
fi

output "Installing askbot requirements"
pip install -r askbot-devel/askbot_requirements.txt >>$LOG 
pip install -r askbot-devel/askbot_requirements_dev.txt >>$LOG 
output "Installing MITx requirements"
pip install -r mitx/pre-requirements.txt >> $LOG
pip install -r mitx/requirements.txt >>$LOG 

John Jarvis committed
292 293
mkdir "$BASE/log" || true
mkdir "$BASE/db" || true
John Jarvis committed
294 295 296 297

cat<<END
   Success!!

298 299
   To start using Django you will need to activate the local Python 
   and Ruby environment (at this time rvm only supports bash) :
John Jarvis committed
300 301 302 303

        $ source $RUBY_DIR/scripts/rvm
        $ source $PYTHON_DIR/bin/activate
  
304
   To initialize Django
John Jarvis committed
305 306
        
        $ cd $BASE/mitx
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
        $ rake django-admin[syncdb]
        $ rake django-admin[migrate]

   To start the Django on port 8000

        $ rake lms
   
   Or to start Django on a different <port#>

        $ rake django-admin[runserver,lms,dev,<port#>]   

  If the Django development server starts properly you 
  should see:

      Development server is running at http://127.0.0.1:<port#>/
      Quit the server with CONTROL-C.

  Connect your browser to http://127.0.0.1:<port#> to 
  view the Django site.


John Jarvis committed
328 329 330
END
exit 0