django-rest-framework/README.txt
2011-01-17 17:34:58 +00:00

18 lines
426 B
Plaintext

# To install django-rest-framework...
#
# Requirements:
# python2.6
# virtualenv
hg clone https://tomchristie@bitbucket.org/tomchristie/django-rest-framework
cd django-rest-framework/
virtualenv --no-site-packages --distribute --python=python2.6 env
source ./env/bin/activate
pip install -r ./requirements.txt
python ./src/manage.py test
# To build the documentation...
sphinx-build -c docs -b html -d cache docs html