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
|
2020-03-01 03:10:25 +03:00
|
|
|
dj-rest-auth app with jQuery on frontend.
|
2014-11-12 13:18:21 +03:00
|
|
|
Do these steps to make it running (ideally in virtualenv).
|
2014-10-16 15:31:25 +04:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
cd /tmp
|
2020-03-02 01:42:28 +03:00
|
|
|
git clone https://github.com/jazzband/dj-rest-auth.git
|
2020-03-01 03:10:25 +03:00
|
|
|
cd dj-rest-auth/demo/
|
2014-10-16 15:31:25 +04:00
|
|
|
pip install -r requirements.pip
|
2015-12-21 19:01:41 +03:00
|
|
|
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.
|