@@ -18,287 +18,5 @@ The ``devstack`` instance is designed to run code and tests, but you can do most
- You can load pages served by the running Vagrant instance.
Prerequisites
-------------
This guide assumes:
- You know how to open a terminal and use basic Linux operating system commands.
- You understand basic virtualization concepts and are familiar with `Vagrant`__
- You are familiar with `Django`__ development (for LMS and Studio)
- You are familiar with `Sinatra`__ development (for Forums)
__ http://docs.vagrantup.com/v2/
__ http://www.djangoproject.com/
__ http://www.sinatrarb.com/
Installation
------------
1. `Install Vagrant`__ (version 1.3.4 or higher)
2. Install the ``vagrant-hostsupdater`` plugin:
.. code:: bash
vagrant plugin install vagrant-hostsupdater
3. `Install Ansible`__ (version 1.3.2 or higher)
4. Clone the edX configuration repo:
.. code:: bash
git clone https://github.com/edx/configuration
5. From the ``configuration/vagrant/devstack`` directory, create the Vagrant instance. If you have never used Vagrant before, take a moment to read the `Why Vagrant?`__ page, which explains the Vagrant commands in detail.
.. code:: bash
vagrant up
A new Vagrant instance will be created, with requirements for these repositories installed:
- `edx-platform`__ (LMS and Studio)
- `cs_comments_service`__
The first time you create the instance, Vagrant will download the base box, which is about 2GB.
After downloading the base box, Vagrant will automatically provision your new virtual server using the Ansible scripts from this repo.
If you destroy and recreate the VM, Vagrant will re-use the box it downloaded.
In the ``configuration/vagrant/devstack`` directory, `ssh into the Vagrant instance`__:
.. code:: bash
vagrant ssh
This will log you in as the ``vagrant`` user. Within the Vagrant instance, you will be able to start services (LMS, Studio, and Forums) and run tests.
- The ``edx-platform`` repo (for LMS and Studio) is cloned to ``/edx/app/edxapp/edx-platform`` and synced with ``devstack/edx-platform`` on the host system.
- The ``cs_comments_service`` repo (for Forums) is cloned to ``/edx/app/forum/cs_comments_service`` and synced with ``devstack/cs_comments_service`` on the host system.
To start the services and run tests, you will need to log in as either the ``edxapp`` or ``forum`` user. See below for instructions.
6. Open a browser on your host machine and navigate to ``localhost:8000`` to load the LMS. (Vagrant will forward port 8000 to the LMS server running in the VM.)
6. Open a browser on your host machine and navigate to ``localhost:8001`` to load Studio. (Vagrant will forward port 8001 to the Studio server running in the VM.)
By default, Django's ``runserver`` serves static assets (CSS and JavaScript) directly from the source files in the ``edx-platform`` repo. This allows you to make changes and quickly see the results.
In production, however, we process static assets using `django-pipeline`__ To verify that your changes will work in production, you can run LMS and Studio with the pipeline enabled:
If system requirements change, you will need to update the Vagrant instance:
1. Checkout the release branch of the configuration repo:
.. code:: bash
git checkout release
git pull
2. From the ``configuration/vagrant/devstack`` directory, provision the Vagrant instance:
.. code:: bash
vagrant provision
This process will perform a ``git clean`` of the ``edx-platform`` and ``cs_comments_service`` repositories, so make sure that any changes you had are checked in or stashed.
Recreating the Environment
--------------------------
To destroy and recreate the environment:
.. code:: bash
vagrant destroy
vagrant up
This will perform a ``git clean`` of the ``edx-platform`` and ``cs_comments_service`` repositories. You will also lose any work stored in the Vagrant instance as that instance will be destroyed and a new one created from scratch.