Created
March 27, 2013 10:08
-
-
Save specialunderwear/5253169 to your computer and use it in GitHub Desktop.
install deploy tool development environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install git | |
apt-get install debianize | |
git clone [email protected]:devopsconsulting/vdt.deploy.git | |
git clone [email protected]:devopsconsulting/vdt.deployplugin.cloudstack.git | |
git clone [email protected]:devopsconsulting/vdt.deployplugin.xen.git | |
git clone [email protected]:devopsconsulting/python-mutexlock.git | |
git clone [email protected]:devopsconsulting/python-cloudstack.git | |
apt-get install virtualenv pip | |
apt-get install python-virtualenv python-pip | |
pip install virtualenvwrapper | |
echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.profile | |
source /usr/local/bin/virtualenvwrapper.sh | |
mkvirtualenv deploy | |
cd python-cloudstack/ | |
python setup.py develop | |
cd ../python-mutexlock/ | |
python setup.py develop | |
cd ../vdt.deploy | |
python setup.py develop | |
cd ../vdt.deployplugin.cloudstack/ | |
python setup.py develop | |
cd ../vdt.deployplugin.xen/ | |
python setup.py develop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment