https://github.com/justdjango/django-react-boilerplate
A Django and React user authentication project boilerplate.
https://github.com/justdjango/django-react-boilerplate
Last synced: about 1 month ago
JSON representation
A Django and React user authentication project boilerplate.
- Host: GitHub
- URL: https://github.com/justdjango/django-react-boilerplate
- Owner: justdjango
- Created: 2018-12-04T20:35:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:46:09.000Z (over 2 years ago)
- Last Synced: 2025-03-28T20:07:25.409Z (about 1 month ago)
- Language: JavaScript
- Size: 189 KB
- Stars: 432
- Watchers: 13
- Forks: 265
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The Definitive Django Learning Platform.
# Django React Boilerplate
[](https://youtu.be/YKYVv0gm_0o)
This repository contains a boilerplate project setup for Django and React. The project contains backend user authentication with the Django Rest Framework and rest-auth. The frontend has react redux setup for user authentication by storing the token in localstorage.
[Watch the tutorial on how to integrate Django and React](https://youtu.be/YKYVv0gm_0o)
## Backend development workflow
```json
virtualenv env
source env/bin/activate
pip install -r requirements.txt
python manage.py runserver
```## Frontend development workflow
```json
npm i
npm start
```## For deploying
```json
npm run build
```---