django-rest-auth/docs/demo.rst

18 lines
545 B
ReStructuredText
Raw Normal View History

2014-10-16 15:31:25 +04:00
Demo project
============
2014-11-12 13:18:21 +03:00
The idea of creating demo project was to show how you can potentially use
django-rest-auth app with jQuery on frontend.
Do these steps to make it running (ideally in virtualenv).
2014-10-16 15:31:25 +04:00
.. code-block:: python
cd /tmp
2014-10-16 17:57:30 +04:00
git clone https://github.com/Tivix/django-rest-auth.git
2014-10-16 15:31:25 +04:00
cd django-rest-auth/demo/
pip install -r requirements.pip
python manage.py migrate --settings=demo.settings --noinput
2014-10-16 15:31:25 +04:00
python manage.py runserver --settings=demo.settings
Now, go to ``http://127.0.0.1:8000/`` in your browser.