Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 722 Bytes

README.md

File metadata and controls

41 lines (33 loc) · 722 Bytes

INSTALLATION

Setup the buildout cache

mkdir ~/.buildout
cd ~/.buildout
mkdir eggs
mkdir downloads
mkdir extends
echo "[buildout]
eggs-directory = /home/cmrs/.buildout/eggs
download-cache = /home/cmrs/.buildout/downloads
extends-cache = /home/cmrs/.buildout/extends" > ~/.buildout/default.cfg

Download the buildout and create the venv

git clone [email protected]:cmrs/buildout.cmrs.git <venv_folder>
cd <venv_folder>
virtualenv .

Install and initialise buildout

pip install zc.buildout
buildout init

Run the buildout

buildout -c default.cfg