├── .gitignore ├── README.md └── tutorial ├── ReactComments ├── __init__.py ├── admin.py ├── api_views.py ├── fixtures │ └── initial_data.json ├── models.py ├── routers.py ├── serializers.py ├── static │ └── js │ │ └── comments.jsx ├── templates │ └── index.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt └── tutorial ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/README.md -------------------------------------------------------------------------------- /tutorial/ReactComments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/ReactComments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/admin.py -------------------------------------------------------------------------------- /tutorial/ReactComments/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/api_views.py -------------------------------------------------------------------------------- /tutorial/ReactComments/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/fixtures/initial_data.json -------------------------------------------------------------------------------- /tutorial/ReactComments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/models.py -------------------------------------------------------------------------------- /tutorial/ReactComments/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/routers.py -------------------------------------------------------------------------------- /tutorial/ReactComments/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/serializers.py -------------------------------------------------------------------------------- /tutorial/ReactComments/static/js/comments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/static/js/comments.jsx -------------------------------------------------------------------------------- /tutorial/ReactComments/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/templates/index.html -------------------------------------------------------------------------------- /tutorial/ReactComments/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/tests.py -------------------------------------------------------------------------------- /tutorial/ReactComments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/urls.py -------------------------------------------------------------------------------- /tutorial/ReactComments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/ReactComments/views.py -------------------------------------------------------------------------------- /tutorial/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/manage.py -------------------------------------------------------------------------------- /tutorial/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/requirements.txt -------------------------------------------------------------------------------- /tutorial/tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/tutorial/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/tutorial/settings.py -------------------------------------------------------------------------------- /tutorial/tutorial/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/tutorial/urls.py -------------------------------------------------------------------------------- /tutorial/tutorial/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HorizonXP/react-tutorial-django/HEAD/tutorial/tutorial/wsgi.py --------------------------------------------------------------------------------