Install Git, Vagrant (1.7.2) and Virtualbox (4.3.26).
$ git clone [email protected]:parklab/refinery-platform.git
$ cd refinery-platform
$ vagrant up
The above step should take about 15 minutes depending on the speed of your machine and Internet connection. If you get an error, simply retry by:
$ vagrant provision
Open http://192.168.50.50:8000/ in your web browser.
Create a Python 2.7 virtual environment (optional but recommended, assumes virtualenvwrapper is installed, for example in Ubuntu: apt-get install virtualenvwrapper):
$ mkvirtualenv -a $(pwd) refinery-deployment
Install Fabric (assumes header files for Python are installed, for example in Ubuntu: apt-get install python-dev):
$ pip install -r deployment/requirements.txt
Use fabricrc.sample to update or initialize Fabric configuration, for example:
$ cp fabricrc.sample ~/.fabricrc
To pull the latest code and update Refinery installation:
$ fab vm update
Connect to the initialized VM:
$ vagrant ssh
$ workon refinery-platform
$ ./manage.py [command]
Log in to Refinery (http://192.168.50.50:8000/) with the default guest user account (username: guest, password: guest).
Log in to Django admin UI (http://192.168.50.50:8000/admin/) with the default superuser account (username: admin, password: refinery).
Please see [installation notes] for more details, including information on how to configure Galaxy for this setup.
- Refinery deployment requires a lot of external dependencies. You
might have to run
vagrant provision
repeatedly to install all dependencies successfully. Any errors in the output ofvagrant provision
indicate that you have to re-run the command. - If you run into a build error in OS X when trying to install Fabric:
export C_INCLUDE_PATH=/usr/local/include
- If you have a VPN connection running, you may need to disconnect and reconnect before you can access the VM. In some cases you may have to reboot the host machine.