django-rest-auth/docs/demo.rst
2020-03-01 16:42:28 -06:00

18 lines
536 B
ReStructuredText

Demo project
============
The idea of creating demo project was to show how you can potentially use
dj-rest-auth app with jQuery on frontend.
Do these steps to make it running (ideally in virtualenv).
.. code-block:: python
cd /tmp
git clone https://github.com/jazzband/dj-rest-auth.git
cd dj-rest-auth/demo/
pip install -r requirements.pip
python manage.py migrate --settings=demo.settings --noinput
python manage.py runserver --settings=demo.settings
Now, go to ``http://127.0.0.1:8000/`` in your browser.