Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Install VirtualBox >= 4.3.12
  • Install Vagrant >= 1.5.3

    Download the Vagrantfile and create the Vagrant instance:

    Code Blockmkdir fullstack cd fullstack  1.8.1.  Note: newer versions of Vagrant have had difficulty with our boxes.
  • Define which release you want to install: 

    Code Block
    export OPENEDX_RELEASE=the_tag_you_want  #  check https://openedx.atlassian.net/wiki/display/DOC/Open+edX+Releases for release Git Tags to use here
  • Download the install script, and run it. It will get the Vagrantfile and run vagrant for you: 

    Code Block
    curl -OL https://raw.github.com/edx/configuration/$OPENEDX_RELEASE/util/install/install_stack.sh
    bash install_stack.sh devstack $OPENEDX_RELEASE
  • If you need more control over the installation, instead of using install_stack.sh, download the Vagrantfile and create the Vagrant instance yourself:

    Code Block
    curl -LOL https://raw.githubusercontent.com/edx/configuration/$OPENEDX_RELEASE/vagrant/release/fullstack/Vagrantfile > Vagrantfile
    vagrant plugin install vagrant-hostsupdater
    vagrant up

...