Development:Setup:Linux:RHEL: Difference between revisions
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
==Install RVM== | ==Install RVM== | ||
===Single User Mode (Recommended)=== | ====Single User Mode (Recommended)==== | ||
<pre>\curl -L https://get.rvm.io | bash -s stable</pre> | <pre>\curl -L https://get.rvm.io | bash -s stable</pre> | ||
=====Load RVM as a Function===== | ======Load RVM as a Function====== | ||
<pre>source ~/.rvm/bin/rvm</pre> | <pre>source ~/.rvm/bin/rvm</pre> | ||
===Multi User Mode=== | ====Multi User Mode==== | ||
<pre>\curl -L https://get.rvm.io | sudo bash -s stable</pre> | <pre>\curl -L https://get.rvm.io | sudo bash -s stable</pre> | ||
=====Load RVM as a Function===== | ======Load RVM as a Function====== | ||
<pre>source /etc/profile</pre> | <pre>source /etc/profile</pre> | ||
===Post-Installation=== | ====Post-Installation==== | ||
====Make sure all the dependencies are met for RVM==== | =====Make sure all the dependencies are met for RVM===== | ||
<pre>rvm requirements</pre> | <pre>rvm requirements</pre> | ||
Revision as of 17:00, 3 January 2013
Prerequisites
- You must have shell access
- You must have root access (via sudo), or the required software must already be installed
Install Git
sudo yum install git
Get Expertiza
Expertiza Repository URLs
- (ssh, read/write) git@github.com:expertiza/expertiza.git
- (https, read/write) https://github.com/expertiza/expertiza.git
- (git, read-only) git://github.com/expertiza/expertiza.git
Default
git clone <remote>
git clone git@github.com:expertiza/expertiza.git
Options
git clone -b <branch> <remote>
git clone -b production git@github.com:expertiza/expertiza.git
Install RVM
Single User Mode (Recommended)
\curl -L https://get.rvm.io | bash -s stable
Load RVM as a Function
source ~/.rvm/bin/rvm
Multi User Mode
\curl -L https://get.rvm.io | sudo bash -s stable
Load RVM as a Function
source /etc/profile
Post-Installation
Make sure all the dependencies are met for RVM
rvm requirements