Web APIs for Django. 🎸
Go to file
2011-05-27 10:35:43 +01:00
djangorestframework forms/models can be set on the view as well as the resource 2011-05-27 10:35:43 +01:00
docs The core is now documented from the docstrings in the source. 2011-05-19 19:36:30 +02:00
examples Allow views to return HttpResponses. Add initial() hook method 2011-05-24 10:27:24 +01:00
.hgignore name and description 2011-05-23 17:07:31 +01:00
.hgtags Added tag 0.1 for changeset 6865c2156447 2011-02-21 23:54:33 +00:00
AUTHORS Added Alex Ehlke to AUTHORS 2011-05-17 08:20:03 +01:00
LICENSE IANAL 2011-03-09 08:18:06 +00:00
README Add coverage to requirements 2011-03-17 08:51:53 +00:00
requirements.txt Add coverage to requirements 2011-03-17 08:36:22 +00:00
setup.py Add utils to setup.py - see if the examples tests now pass 2011-05-16 16:00:00 +01:00
tox.ini Danielfm packaged the 1.2 release so we can now install it from his repo. 2011-04-27 13:47:46 +02: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, coverage

# To run the tests...

export PYTHONPATH=.    # Ensure djangorestframework is on the PYTHONPATH
python djangorestframework/runtests/runtests.py


# To run the test coverage report...

export PYTHONPATH=.    # Ensure djangorestframework is on the PYTHONPATH
python djangorestframework/runtests/runcoverage.py

# 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

# To run the tests against the full set of supported configurations

deactivate  # Ensure we are not currently running in a virtualenv
tox