Skip to content

Instantly share code, notes, and snippets.

@trivoallan
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save trivoallan/9917802 to your computer and use it in GitHub Desktop.

Select an option

Save trivoallan/9917802 to your computer and use it in GitHub Desktop.

Installation du developer stack edx

Documentation de référence : https://github.com/edx/configuration/wiki/edX-Developer-Stack

Dépendances

  • virtualbox >= 4.2.16
  • vagrant >= 1.5.0

Opérations à effectuer sur la machine hôte

# @see https://github.com/mitchellh/vagrant/issues/3263
cd /usr/bin/
sudo ln -sf /usr/sbin/exportfs
cd
mkdir devstack
cd devstack
curl https://raw.github.com/edx/configuration/master/vagrant/release/devstack/Vagrantfile > Vagrantfile
vagrant up

# La commande précédente se termine avec une erreur, c'est normal

vagrant ssh

Opérations à effectuer sur la machine guest

cd /var/tmp
git clone https://github.com/edx/configuration.git
cd configuration
sudo pip install -r requirements
cd playbooks
sudo ansible-playbook -c local ./playbooks/vagrant-devstack.yml -i "localhost,"
sudo su edxapp
paver devstack lms

Accès au LMS

à cette URL : http://192.168.33.10:8000/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment