Web APIs for Django. 🎸
Go to file
tom christie tom@tomchristie.com aae848cace Nitpicking
2011-02-21 22:23:09 +00:00
djangorestframework Fix kwargs in url conf to be more consistent, also fixes broken blog posts example (every blog post showed all comments) 2011-02-19 17:55:32 +00:00
docs Nitpicking 2011-02-21 22:23:09 +00:00
examples Fix kwargs in url conf to be more consistent, also fixes broken blog posts example (every blog post showed all comments) 2011-02-19 17:55:32 +00:00
testproject Yowzers. Final big bunch of refactoring for 0.1 release. Now support Django 1.3's views, admin style api is all polished off, loads of tests, new test project for running the test. All sorts of goodness. Getting ready to push this out now. 2011-02-19 10:26:27 +00:00
.hgignore Add MANIFEST and dist to .hgignore 2011-02-21 21:52:54 +00:00
AUTHORS Yowzers. Final big bunch of refactoring for 0.1 release. Now support Django 1.3's views, admin style api is all polished off, loads of tests, new test project for running the test. All sorts of goodness. Getting ready to push this out now. 2011-02-19 10:26:27 +00:00
README Yowzers. Final big bunch of refactoring for 0.1 release. Now support Django 1.3's views, admin style api is all polished off, loads of tests, new test project for running the test. All sorts of goodness. Getting ready to push this out now. 2011-02-19 10:26:27 +00:00
requirements.txt Yowzers. Final big bunch of refactoring for 0.1 release. Now support Django 1.3's views, admin style api is all polished off, loads of tests, new test project for running the test. All sorts of goodness. Getting ready to push this out now. 2011-02-19 10:26:27 +00:00
setup.py setup.py 2011-02-19 19:00:05 +00:00

# To install django-rest-framework in a virtualenv environment...

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 # django, pip

# To run the tests...

cd testproject
export PYTHONPATH=..
python manage.py test djangorestframework

# To run the examples...

pip install -r examples/requirements.txt # pygments, httplib2, markdown
cd examples
export PYTHONPATH=..
python manage.py syncdb
python manage.py runserver

# To build the documentation...

pip install -r docs/requirements.txt   # sphinx
sphinx-build -c docs -b html -d docs/build docs html